Updated Linked List - Added append function (Doesn't have access to Node member variables)

This commit is contained in:
2022-11-13 14:34:00 +00:00
parent 462d1ccc83
commit 05d637acb5
5 changed files with 47 additions and 21 deletions

7
src/main.cpp Normal file
View File

@ -0,0 +1,7 @@
#include <LinkedList/linkedlist.h>
int main() {
Datastructures::LinkedList<int> list;
list.append(5);
list.append(200);
}