https://github.com/cubesugar/algorithms_with_c_myself
https://github.com/cubesugar/algorithms_with_c_myself
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cubesugar/algorithms_with_c_myself
- Owner: CubeSugar
- Created: 2013-03-11T14:29:53.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-08-13T05:14:56.000Z (almost 13 years ago)
- Last Synced: 2025-01-11T09:40:39.991Z (over 1 year ago)
- Language: C
- Size: 789 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Algorithms_with_C_myself
========================
实践基础算法
进度:
No. |task |file |include<> |progress
:--:|:-------------------------------|:----------------|:---------------|--------:
1 |Linked List Interface |list.h | |100%
|LList Interface implementation |list.c |list.h |100%
2 |Doubly Linked List Interface |dlist.h | |100%
|DList Interface implementation |dlist.c |dlist.h |100%
3 |Circular Linked List Interface |clist.h | |100%
|CList Interface implementation |clist.c |clist.h |100%
4 |Stack Interface |stack.h |list.h |100%
|Stack INterface implementation |stack.c |list.h |100%
| | |stack.h |
5 |Queue Interface |queue.h |list.h |100%
|Queue Interface implementation |queue.c |list.h |100%
| | |queue.h |
6 |Set Interface |set.h |list.h |100%
|Set Interface implementation |set.c |list.h |100%
| | |set.h |
7 |Hash Chained Table Interface |hash_chn_tbl.h |list.h |100%
|Hash Chn_Tbl implementation |hash_chn_tbl.c |list.h |100%
| | |hash_chn_tbl.h |
8 |Hash Open-Addressed | | |
9 |Binary Tree Interface |tree_binary.h | |100%
|Binary Tree implementation |tree_binary.c |tree_binary.h |100%
|Tree Traversing Interface |tree_traverse.h |list.h |100%
| | |tree_binary.h |
|Tree Traversing implementation |tree_traverse.c |tree_traverse.h |100%