Updated Linked List - Added append function (Doesn't have access to Node member variables)
This commit is contained in:
7
src/main.cpp
Normal file
7
src/main.cpp
Normal file
@ -0,0 +1,7 @@
|
||||
#include <LinkedList/linkedlist.h>
|
||||
|
||||
int main() {
|
||||
Datastructures::LinkedList<int> list;
|
||||
list.append(5);
|
||||
list.append(200);
|
||||
}
|
Reference in New Issue
Block a user