Skip to content

mangodb203/SEHomework2

Repository files navigation

SEHomework2

Actions Status Language: Python Platform: Linux Autopep8 Pylint Pyright

Merge Sort

Merge sort is a divide-and-conquer sorting algorithm that splits an array into two halves, recursively sorts each half, and then merges the two sorted halves back together. It works by dividing the problem into smaller subproblems, solving them independently, and then combining the results. Merge sort is efficient with a time complexity of O(n log n) and is stable, meaning it preserves the relative order of equal elements. However, it requires additional memory for the merging process, making its space complexity O(n).

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages