- For reviewing my data structure lesson.
- If you find any bugs or have any suggestions, please pull requests or contact me (maylonxu@foxmail.com).
- linked list
- single linked list (with a head node) header file , C source file
- single linked list (without a head node) header file , C source file
- double linked list (without a head node) header file , C source file
- circular single linked list (with a head node) header file , C source file
- circular double linked list (without a head node) header file , C source file
- static linked list (with a head node) header file , C source file
- sequential list header file, C source file
- stack
- sequential stack header file, C source file
- linked stack (without a head node) header file, C source file
- queue
- sequential queue header file, C source file
- linked queue (with a head node) header file, C source file