Recent questions tagged sorting

0 votes
0 answers
93
0 votes
0 answers
97
0 votes
1 answer
98
0 votes
1 answer
100
0 votes
0 answers
103
1 votes
1 answer
104
0 votes
1 answer
105
0 votes
0 answers
106
Should not there be a second condition stating i = j-1 in While loop's conditional statement,if not then it seems to me while loop will be a infinite loop..
1 votes
1 answer
111
I’ve seen this wikipedia article – https://en.wikipedia.org/wiki/Comparison_sortAlso see this link – https://gateoverflow.in/32948/minimum-number-of-comparisonshttp...
0 votes
2 answers
113
I did Google and found out that Quicksort is better then Mergesort, but my question is which is faster among both?
1 votes
5 answers
115
why not merge sort?we don’t swap in merge sort,we just create auxillary arrays and merge them by changing elements in the original array.should we consider that as a sw...
3 votes
4 answers
116
0 votes
0 answers
120
What is the extra memory needed for merge sort:1] In case of Iterative merge sort.(DS:Array)2]In case of Recursive merge sort.(DS:Array)3] In case of Iterative merge sort...