From 46d13e3ffca23d835c6510c7b20bdeb0c433570a Mon Sep 17 00:00:00 2001 From: apurv69 <72222883+apurv69@users.noreply.github.com> Date: Thu, 1 Oct 2020 23:41:06 +0530 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 153984e..85a83f4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ datastructure ============= -basic data structure implement \ No newline at end of file +List of Few basics data structure implementation! From bad946b64cb586277806dd6c4d84691209911dd8 Mon Sep 17 00:00:00 2001 From: apurv69 <72222883+apurv69@users.noreply.github.com> Date: Thu, 1 Oct 2020 23:43:25 +0530 Subject: [PATCH 2/2] Update list.h --- list/list/list.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/list/list/list.h b/list/list/list.h index 25f0cbf..4f5071b 100644 --- a/list/list/list.h +++ b/list/list/list.h @@ -1,12 +1,12 @@ //list.h #define MAX_SIZE 100 -typedef struct _myList{ +class _myList{ int value; - struct _myList *next; + _myList *next; }myList; -typedef struct _myQueue{ +class _myQueue{ int node_num; myList *front; myList *rear;