├── .gitattributes ├── .gitignore ├── .travis.yml ├── C-DataStructures-Library ├── .idea │ ├── .name │ ├── C-DataStructures-Library.iml │ ├── codeStyles │ │ ├── Project.xml │ │ └── codeStyleConfig.xml │ ├── dictionaries │ │ └── lvenk.xml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── CMakeLists.txt ├── benchmarks │ ├── AVLTreeBench.c │ ├── AssociativeListBench.c │ ├── HeapBench.c │ ├── RedBlackTreeBench.c │ └── main.c ├── include │ ├── AVLTree.h │ ├── Array.h │ ├── AssociativeList.h │ ├── BinarySearchTree.h │ ├── BitArray.h │ ├── CircularLinkedList.h │ ├── DequeArray.h │ ├── DequeList.h │ ├── DoublyLinkedList.h │ ├── DynamicArray.h │ ├── Heap.h │ ├── PriorityList.h │ ├── QueueArray.h │ ├── QueueList.h │ ├── RedBlackTree.h │ ├── SinglyLinkedList.h │ ├── SortedList.h │ ├── StackArray.h │ ├── StackList.h │ └── core │ │ ├── Benchmarks.h │ │ ├── Core.h │ │ ├── CoreSort.h │ │ └── Tests.h ├── interface │ ├── Interface.c │ ├── Interface.h │ └── README.md ├── src │ ├── AVLTree.c │ ├── Array.c │ ├── AssociativeList.c │ ├── BinarySearchTree.c │ ├── BitArray.c │ ├── CircularLinkedList.c │ ├── DequeArray.c │ ├── DequeList.c │ ├── DoublyLinkedList.c │ ├── DynamicArray.c │ ├── Heap.c │ ├── PriorityList.c │ ├── QueueArray.c │ ├── QueueList.c │ ├── RedBlackTree.c │ ├── SinglyLinkedList.c │ ├── SortedList.c │ ├── StackArray.c │ └── StackList.c ├── tests │ ├── AVLTreeTests.c │ ├── ArrayTests.c │ ├── AssociativeListTests.c │ ├── BinarySearchTreeTests.c │ ├── BitArrayTests.c │ ├── CircularLinkedListTests.c │ ├── DequeArrayTests.c │ ├── DequeListTests.c │ ├── DoublyLinkedListTests.c │ ├── DynamicArrayTests.c │ ├── HeapTests.c │ ├── PriorityListTests.c │ ├── QueueArrayTests.c │ ├── QueueListTests.c │ ├── RedBlackTreeTests.c │ ├── SinglyLinkedListTests.c │ ├── SortedListTests.c │ ├── StackArrayTests.c │ ├── StackListTests.c │ ├── UnitTest │ │ ├── UnitTest.c │ │ └── UnitTest.h │ └── main.c └── util │ ├── include │ ├── CString.h │ ├── Clock.h │ └── Utility.h │ └── src │ ├── CString.c │ ├── Clock.c │ └── Utility.c ├── LICENSE ├── README.md └── doxygen ├── .gitignore ├── Doxyfile └── pages ├── mainpage.md └── pages.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/.travis.yml -------------------------------------------------------------------------------- /C-DataStructures-Library/.idea/.name: -------------------------------------------------------------------------------- 1 | C_DataStructures_Library -------------------------------------------------------------------------------- /C-DataStructures-Library/.idea/C-DataStructures-Library.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/.idea/C-DataStructures-Library.iml -------------------------------------------------------------------------------- /C-DataStructures-Library/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /C-DataStructures-Library/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /C-DataStructures-Library/.idea/dictionaries/lvenk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/.idea/dictionaries/lvenk.xml -------------------------------------------------------------------------------- /C-DataStructures-Library/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/.idea/encodings.xml -------------------------------------------------------------------------------- /C-DataStructures-Library/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/.idea/misc.xml -------------------------------------------------------------------------------- /C-DataStructures-Library/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/.idea/modules.xml -------------------------------------------------------------------------------- /C-DataStructures-Library/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/.idea/vcs.xml -------------------------------------------------------------------------------- /C-DataStructures-Library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/CMakeLists.txt -------------------------------------------------------------------------------- /C-DataStructures-Library/benchmarks/AVLTreeBench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/benchmarks/AVLTreeBench.c -------------------------------------------------------------------------------- /C-DataStructures-Library/benchmarks/AssociativeListBench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/benchmarks/AssociativeListBench.c -------------------------------------------------------------------------------- /C-DataStructures-Library/benchmarks/HeapBench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/benchmarks/HeapBench.c -------------------------------------------------------------------------------- /C-DataStructures-Library/benchmarks/RedBlackTreeBench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/benchmarks/RedBlackTreeBench.c -------------------------------------------------------------------------------- /C-DataStructures-Library/benchmarks/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/benchmarks/main.c -------------------------------------------------------------------------------- /C-DataStructures-Library/include/AVLTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/AVLTree.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/Array.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/AssociativeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/AssociativeList.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/BinarySearchTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/BinarySearchTree.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/BitArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/BitArray.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/CircularLinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/CircularLinkedList.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/DequeArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/DequeArray.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/DequeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/DequeList.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/DoublyLinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/DoublyLinkedList.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/DynamicArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/DynamicArray.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/Heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/Heap.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/PriorityList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/PriorityList.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/QueueArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/QueueArray.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/QueueList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/QueueList.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/RedBlackTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/RedBlackTree.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/SinglyLinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/SinglyLinkedList.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/SortedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/SortedList.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/StackArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/StackArray.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/StackList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/StackList.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/core/Benchmarks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/core/Benchmarks.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/core/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/core/Core.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/core/CoreSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/core/CoreSort.h -------------------------------------------------------------------------------- /C-DataStructures-Library/include/core/Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/include/core/Tests.h -------------------------------------------------------------------------------- /C-DataStructures-Library/interface/Interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/interface/Interface.c -------------------------------------------------------------------------------- /C-DataStructures-Library/interface/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/interface/Interface.h -------------------------------------------------------------------------------- /C-DataStructures-Library/interface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/interface/README.md -------------------------------------------------------------------------------- /C-DataStructures-Library/src/AVLTree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/src/AVLTree.c -------------------------------------------------------------------------------- /C-DataStructures-Library/src/Array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/src/Array.c -------------------------------------------------------------------------------- /C-DataStructures-Library/src/AssociativeList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/src/AssociativeList.c -------------------------------------------------------------------------------- /C-DataStructures-Library/src/BinarySearchTree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/src/BinarySearchTree.c -------------------------------------------------------------------------------- /C-DataStructures-Library/src/BitArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/src/BitArray.c -------------------------------------------------------------------------------- /C-DataStructures-Library/src/CircularLinkedList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/src/CircularLinkedList.c -------------------------------------------------------------------------------- /C-DataStructures-Library/src/DequeArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/src/DequeArray.c -------------------------------------------------------------------------------- /C-DataStructures-Library/src/DequeList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/src/DequeList.c -------------------------------------------------------------------------------- /C-DataStructures-Library/src/DoublyLinkedList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/src/DoublyLinkedList.c -------------------------------------------------------------------------------- /C-DataStructures-Library/src/DynamicArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/src/DynamicArray.c -------------------------------------------------------------------------------- /C-DataStructures-Library/src/Heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/src/Heap.c -------------------------------------------------------------------------------- /C-DataStructures-Library/src/PriorityList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/src/PriorityList.c -------------------------------------------------------------------------------- /C-DataStructures-Library/src/QueueArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/src/QueueArray.c -------------------------------------------------------------------------------- /C-DataStructures-Library/src/QueueList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/src/QueueList.c -------------------------------------------------------------------------------- /C-DataStructures-Library/src/RedBlackTree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/src/RedBlackTree.c -------------------------------------------------------------------------------- /C-DataStructures-Library/src/SinglyLinkedList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/src/SinglyLinkedList.c -------------------------------------------------------------------------------- /C-DataStructures-Library/src/SortedList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/src/SortedList.c -------------------------------------------------------------------------------- /C-DataStructures-Library/src/StackArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/src/StackArray.c -------------------------------------------------------------------------------- /C-DataStructures-Library/src/StackList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/src/StackList.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/AVLTreeTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/AVLTreeTests.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/ArrayTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/ArrayTests.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/AssociativeListTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/AssociativeListTests.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/BinarySearchTreeTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/BinarySearchTreeTests.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/BitArrayTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/BitArrayTests.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/CircularLinkedListTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/CircularLinkedListTests.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/DequeArrayTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/DequeArrayTests.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/DequeListTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/DequeListTests.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/DoublyLinkedListTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/DoublyLinkedListTests.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/DynamicArrayTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/DynamicArrayTests.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/HeapTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/HeapTests.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/PriorityListTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/PriorityListTests.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/QueueArrayTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/QueueArrayTests.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/QueueListTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/QueueListTests.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/RedBlackTreeTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/RedBlackTreeTests.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/SinglyLinkedListTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/SinglyLinkedListTests.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/SortedListTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/SortedListTests.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/StackArrayTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/StackArrayTests.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/StackListTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/StackListTests.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/UnitTest/UnitTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/UnitTest/UnitTest.c -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/UnitTest/UnitTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/UnitTest/UnitTest.h -------------------------------------------------------------------------------- /C-DataStructures-Library/tests/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/tests/main.c -------------------------------------------------------------------------------- /C-DataStructures-Library/util/include/CString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/util/include/CString.h -------------------------------------------------------------------------------- /C-DataStructures-Library/util/include/Clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/util/include/Clock.h -------------------------------------------------------------------------------- /C-DataStructures-Library/util/include/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/util/include/Utility.h -------------------------------------------------------------------------------- /C-DataStructures-Library/util/src/CString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/util/src/CString.c -------------------------------------------------------------------------------- /C-DataStructures-Library/util/src/Clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/util/src/Clock.c -------------------------------------------------------------------------------- /C-DataStructures-Library/util/src/Utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/C-DataStructures-Library/util/src/Utility.c -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/README.md -------------------------------------------------------------------------------- /doxygen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/doxygen/.gitignore -------------------------------------------------------------------------------- /doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/doxygen/Doxyfile -------------------------------------------------------------------------------- /doxygen/pages/mainpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/doxygen/pages/mainpage.md -------------------------------------------------------------------------------- /doxygen/pages/pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoVen/C-DataStructures-Library/HEAD/doxygen/pages/pages.md --------------------------------------------------------------------------------