Revision history of "Quicksort"

Jump to navigation Jump to search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • (cur | prev) 00:00, 8 March 2019Tata (talk | contribs). . (726 bytes) +726. . (Created page with "<pre> #include<stdio.h> int n,seq[100000]; void swap(int x,int y){ int temp=seq[x]; seq[x]=seq[y]; seq[y]=temp; } void quick(int lb,int ub){ if(lb>=ub) retur...")