data-structures
                                
                                 data-structures copied to clipboard
                                
                                    data-structures copied to clipboard
                            
                            
                            
                        This repository contains some data structures implementation in C programming language. I wrote the tutorial posts about these data structures on my personal blog site in Bengali language. If you know...
Data Structures
In this repository I'll add all of my data structures implementations. Most of them are implemented by C programming language.
If you know Bengali go to my personal blog site for tutorials on these topics: http://hellohasan.com/category/data-structure/
Enjoy! :)
Data Structures List:
Linear Data Structure:
- Stack - Basic Implementation
- Stack - Parentheses Balance Checking
- Queue - Basic Implementation
- Conversion of Infix to Postfix notation. Evaluation of Postfix notation
- Deque – Double-Ended Queue
- Singly Linked List: Create, Print and Count the Item
- Singly Linked List: Create, Insert, Search, Delete and Print operation
- Doubly Linked List: Insert, Print the list forward and reverse order
- Doubly Linked List: Insert, Delete, Print the list forward and reverse order
- Circular Singly Linked List: Insert, Delete, Traverse (Print)
- Circular Doubly Linked List: Insert, Delete, Traverse (print) Forward order and Reverse order