summaryrefslogtreecommitdiff
path: root/wk3/lab/bubble.c
diff options
context:
space:
mode:
Diffstat (limited to 'wk3/lab/bubble.c')
-rw-r--r--wk3/lab/bubble.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/wk3/lab/bubble.c b/wk3/lab/bubble.c
deleted file mode 100644
index 3d95665..0000000
--- a/wk3/lab/bubble.c
+++ /dev/null
@@ -1,20 +0,0 @@
-#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)
-*/