diff options
Diffstat (limited to 'wk3/lect/bubble.c')
-rw-r--r-- | wk3/lect/bubble.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/wk3/lect/bubble.c b/wk3/lect/bubble.c new file mode 100644 index 0000000..3d95665 --- /dev/null +++ b/wk3/lect/bubble.c @@ -0,0 +1,20 @@ +#include <cs50.h> +#include <ctype.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + +int main(void) { + +} + + +/* + look at each pair of numbers i & i +1 + if they're out of order swap them + repeat until completely sorted + + worst sorting method + O(n^2) + Q(n) +*/ |