-
-
Save ashumeow/8998443 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* IDEAS FOR QUICK SORT --- SYNTAX only written */ | |
#include<stdio.h> | |
#include<conio.h> | |
void main() | |
{ | |
int i, j, temp; | |
. | |
. | |
. | |
/* main statements*/ | |
for(i=0; i<n; i++) | |
{ | |
/* statements*/ | |
} | |
for(j=0;j<n;j++) | |
{ | |
/*statements*/ | |
/*next for loop*/ for(i=0; i<n; i++) | |
{ | |
/*statements*/ | |
} | |
for(i=0;i<n;i++) | |
{ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment