aboutsummaryrefslogtreecommitdiffstats
path: root/LinkedLists.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'LinkedLists.cpp')
-rw-r--r--LinkedLists.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/LinkedLists.cpp b/LinkedLists.cpp
index 2966f76..55dc090 100644
--- a/LinkedLists.cpp
+++ b/LinkedLists.cpp
@@ -7,6 +7,10 @@ struct intList {
intList* next_el;
};
+// add functions to add elements to a list
+// create a list and be able to order them
+// make ordered linked list
+
int main() {
intList* ilist = NULL;
int el, n;