All public logs

Combined display of all available logs of Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 05:42, 12 May 2023 Admin talk contribs created page Merge Sort (Created page with "Merge Sort is a comparison-based sorting algorithm that uses a divide-and-conquer approach to sort a list of elements. It is an efficient and stable sorting algorithm with a time complexity of O(n log n), making it suitable for large datasets. == Algorithm == The Merge Sort algorithm works as follows: If the list has only one element, it is already sorted, so return the list. Divide the list into two equal halves. Recursively sort each half using Merge Sor...")