sukritishah15 / DS-Algo-Point

This repository contains codes for various data structures and algorithms in C, C++, Java, Python, C#, Go, JavaScript, PHP, Kotlin and Scala
MIT License
953 stars 294 forks source link

Merge sort (Parallel Computing) #813

Open tatticoder opened 3 years ago

tatticoder commented 3 years ago

🚀 Feature

Merge sort is a fast algorithm but it can be further enhanced by creating a new thread for each subproblem and computing them at same time. This issue is not similar to #5

Have you read the Contribution Guidelines?

Yes

Pitch

This algorithm would take advantage of multiple cores in systems and reduce computation time.

tatticoder commented 3 years ago

I would like to work on this in C++