├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── Data Structures ├── Arrays │ └── Dynamic │ │ ├── DynamicArray.cpp │ │ ├── DynamicArray.h │ │ ├── main.cpp │ │ ├── main.exe │ │ ├── vector.cpp │ │ └── vector.exe ├── Hash │ ├── Hash.cpp │ ├── Hash.h │ ├── main.cpp │ └── main.exe ├── Linked List │ ├── Doubly │ │ ├── LinkedList.cpp │ │ ├── LinkedList.h │ │ ├── main.cpp │ │ └── main.exe │ └── Single │ │ ├── LinkedList.cpp │ │ ├── LinkedList.h │ │ ├── main.cpp │ │ └── main.exe ├── Queue │ ├── main.cpp │ └── main.exe ├── Stack │ ├── main.cpp │ └── main.exe └── Trees │ ├── Binary │ ├── main.cpp │ ├── main.exe │ ├── tree.cpp │ └── tree.h │ └── Heap │ ├── Heap.cpp │ ├── Heap.h │ ├── main.cpp │ └── main.exe ├── LICENSE ├── README.md └── desktop.ini /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Data Structures/Arrays/Dynamic/DynamicArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Arrays/Dynamic/DynamicArray.cpp -------------------------------------------------------------------------------- /Data Structures/Arrays/Dynamic/DynamicArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Arrays/Dynamic/DynamicArray.h -------------------------------------------------------------------------------- /Data Structures/Arrays/Dynamic/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Arrays/Dynamic/main.cpp -------------------------------------------------------------------------------- /Data Structures/Arrays/Dynamic/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Arrays/Dynamic/main.exe -------------------------------------------------------------------------------- /Data Structures/Arrays/Dynamic/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Arrays/Dynamic/vector.cpp -------------------------------------------------------------------------------- /Data Structures/Arrays/Dynamic/vector.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Arrays/Dynamic/vector.exe -------------------------------------------------------------------------------- /Data Structures/Hash/Hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Hash/Hash.cpp -------------------------------------------------------------------------------- /Data Structures/Hash/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Hash/Hash.h -------------------------------------------------------------------------------- /Data Structures/Hash/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Hash/main.cpp -------------------------------------------------------------------------------- /Data Structures/Hash/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Hash/main.exe -------------------------------------------------------------------------------- /Data Structures/Linked List/Doubly/LinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Linked List/Doubly/LinkedList.cpp -------------------------------------------------------------------------------- /Data Structures/Linked List/Doubly/LinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Linked List/Doubly/LinkedList.h -------------------------------------------------------------------------------- /Data Structures/Linked List/Doubly/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Linked List/Doubly/main.cpp -------------------------------------------------------------------------------- /Data Structures/Linked List/Doubly/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Linked List/Doubly/main.exe -------------------------------------------------------------------------------- /Data Structures/Linked List/Single/LinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Linked List/Single/LinkedList.cpp -------------------------------------------------------------------------------- /Data Structures/Linked List/Single/LinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Linked List/Single/LinkedList.h -------------------------------------------------------------------------------- /Data Structures/Linked List/Single/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Linked List/Single/main.cpp -------------------------------------------------------------------------------- /Data Structures/Linked List/Single/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Linked List/Single/main.exe -------------------------------------------------------------------------------- /Data Structures/Queue/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Queue/main.cpp -------------------------------------------------------------------------------- /Data Structures/Queue/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Queue/main.exe -------------------------------------------------------------------------------- /Data Structures/Stack/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Stack/main.cpp -------------------------------------------------------------------------------- /Data Structures/Stack/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Stack/main.exe -------------------------------------------------------------------------------- /Data Structures/Trees/Binary/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Trees/Binary/main.cpp -------------------------------------------------------------------------------- /Data Structures/Trees/Binary/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Trees/Binary/main.exe -------------------------------------------------------------------------------- /Data Structures/Trees/Binary/tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Trees/Binary/tree.cpp -------------------------------------------------------------------------------- /Data Structures/Trees/Binary/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Trees/Binary/tree.h -------------------------------------------------------------------------------- /Data Structures/Trees/Heap/Heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Trees/Heap/Heap.cpp -------------------------------------------------------------------------------- /Data Structures/Trees/Heap/Heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Trees/Heap/Heap.h -------------------------------------------------------------------------------- /Data Structures/Trees/Heap/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Trees/Heap/main.cpp -------------------------------------------------------------------------------- /Data Structures/Trees/Heap/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/Data Structures/Trees/Heap/main.exe -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QasimWani/Data-Structures-and-Algorithms/HEAD/README.md -------------------------------------------------------------------------------- /desktop.ini: -------------------------------------------------------------------------------- 1 | [.ShellClassInfo] 2 | IconResource=C:\WINDOWS\System32\SHELL32.dll,12 3 | [ViewState] 4 | Mode= 5 | Vid= 6 | FolderType=Generic 7 | --------------------------------------------------------------------------------