We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 238a2c6 commit 46160feCopy full SHA for 46160fe
linkedLists.h
@@ -1,3 +1,5 @@
1
+// The node struct was inspired by the post at geeksforgeeks.org/linked-list-set-1-introduction
2
+
3
#include <iostream>
4
#include <cstring>
5
#include <stdlib.h>
@@ -7,6 +9,7 @@ using namespace std;
7
9
class List
8
10
{
11
private:
12
+ // This struct bit was inspired by the post at geeksforgeeks.org/linked-list-set-1-introduction
13
typedef struct Node
14
15
int data;
0 commit comments