abhaysinghr516 / Algorithms

This repository contains a collection of various algorithms implemented in C, C++, Go, Java, JavaScript, and Python. The goal of this repository is to help fellow programmers learn and understand algorithms more effectively by providing code examples and explanations in multiple programming languages.
MIT License
9 stars 26 forks source link

implemented three way variation of merge sort #123

Closed ShashashankThakur closed 10 months ago

ShashashankThakur commented 10 months ago

Created a file (_\Merge Sort Algorithm\C++\Triway_mergesort.cpp) that implements merge sort with a three-way variation instead of the classic merge sort in C++.