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
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,2 @@
## DataStructures
This repository for my implemented data structure using C
I write this code when I was in college second grade at 2010 in data structure course

+ [Stack data structure pointer based using C](https://github.com/MoustafaAttia/DataStructures/tree/StackPointerBased)
+ [Stack data structure array based using C](https://github.com/MoustafaAttia/DataStructures/tree/StackArrayBased)
### Queue using array based in C language
4 changes: 2 additions & 2 deletions Test Queue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ int QueueSize2(Queue *s)
int main()
{
printf("********************************************\n"
"This Queue is just for CHAR onlyyyyyyyy \n"
"This Queue is just for CHAR only \n"
"********************************************\n");
Queue q , t;
QueueEntry e;
Expand Down Expand Up @@ -166,4 +166,4 @@ int main()
putchar('\n');

return 0;
}
}