Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
datastructure
=============

basic data structure implement
List of Few basics data structure implementation!
6 changes: 3 additions & 3 deletions list/list/list.h
Original file line number Diff line number Diff line change
@@ -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;
Expand Down