aboutsummaryrefslogtreecommitdiffstats
path: root/LinkedLists.cpp
diff options
context:
space:
mode:
authorzedarider <ymherklotz@gmail.com>2016-02-19 15:09:45 +0000
committerzedarider <ymherklotz@gmail.com>2016-02-19 15:09:45 +0000
commit2c9b9a5a7b57163de6364b566fb7b6462bb8dc16 (patch)
treed9f41d40f7d97c6b9b5565b39ad456fad5015a43 /LinkedLists.cpp
parente6fc0cf82827be1d87dc88fd945554aca1e70d3d (diff)
downloadimperial_2015-2c9b9a5a7b57163de6364b566fb7b6462bb8dc16.tar.gz
imperial_2015-2c9b9a5a7b57163de6364b566fb7b6462bb8dc16.zip
Updated the game
This is the final version of the 2048 game using pointers
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;