Skip to content

Commit 713554e

Browse files
committed
updated c++ hierarchy
1 parent 48d47f5 commit 713554e

File tree

16 files changed

+27
-61
lines changed

16 files changed

+27
-61
lines changed
File renamed without changes.

C++/Data-Structures/ARRAYS/.gitignore

-5
This file was deleted.

C++/Data-Structures/LISTS/LINKED-LIST/SINGLE/.gitignore

-6
This file was deleted.

C++/Data-Structures/LISTS/VECTORS/.gitignore

-6
This file was deleted.

C++/Data-Structures/STACKS/.gitignore

-3
This file was deleted.

C++/Data-Structures/STACKS/stacks.md

-1
This file was deleted.

C++/Misc/.gitignore

-6
This file was deleted.

C++/README.md

+20-18
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
* [2 DIMENSIONAL ARRAY](Data-Structures/ARRAYS/2darrays.cpp)
1313
* [3 DIMENSIONAL ARRAY](Data-Structures/ARRAYS/3darrays.cpp)
1414
* [4 DIMENSIONAL ARRAY](Data-Structures/ARRAYS/4darrays.cpp)
15+
* INBUILT ARRAY CLASSES
16+
* ARRAY CLASS
17+
* MISC
18+
* JAGGED ARRAY
1519

1620
#### LISTS
1721

@@ -20,27 +24,25 @@
2024
* [SINGLE](Data-Structures/LISTS/LINKED-LIST/SINGLE/Main.cpp)
2125
* DOUBLE
2226
* CIRCULAR
23-
* [VECTORS](Data-Structures/LISTS/VECTORS/Main.cpp)
27+
* MEMORY EFFICIENT DOUBLE LINKED LIST
28+
* UNROLLED LINKED LIST
29+
* SKIP LIST
30+
* INBUILT LISTS
31+
* [VECTORS](Data-Structures/LISTS/INBUILT-LISTS/VECTORS/Main.cpp)
2432

2533
#### STACKS
2634

27-
##### ONE WAY STACK
28-
29-
* [STACK](Data-Structures/STACKS/Stack.hpp)
30-
* [USAGE](Data-Structures/STACKS/Stack.cpp)
31-
* [GUIDE TO STACK](Data-Structures/STACKS/stacks.md)
32-
33-
##### TWO WAY STACK
34-
35-
* [STACK](Data-Structures/STACKS/Tstack.hpp)
36-
* [USAGE](Data-Structures/STACKS/two-way-stack.cpp)
37-
* [GUIDE TO STACK](Data-Structures/STACKS/stacks.md)
38-
39-
##### CIRCULAR STACK
40-
41-
##### INBUILT STACK
42-
43-
* [Inbuilt stack library](Data-Structures/STACKS/stack.cpp)
35+
* FIXED ARRAY STACK
36+
* [STACK](Data-Structures/STACKS/Stack.hpp)
37+
* [USAGE](Data-Structures/STACKS/Stack.cpp)
38+
* DYNAMIC ARRAY STACK
39+
* LINKED STACK
40+
* INBUILT STACKS
41+
* [STACK CLASS](Data-Structures/STACKS/INBUILT-STACK/stack.cpp)
42+
* MISC
43+
* TWO WAY
44+
* [STACK](Data-Structures/STACKS/MISC/TWO-WAY/Tstack.hpp)
45+
* [USAGE](Data-Structures/STACKS/MISC/TWO-WAY/two-way-stack.cpp)
4446

4547
#### HEAPS
4648

C++/Searching/.gitignore

-7
This file was deleted.

C++/Sorting/.gitignore

-6
This file was deleted.

C/README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
* [2 DIMENSIONAL ARRAYS](Data-Structures/ARRAYS/2darrays.c)
1515
* [3 DIMENSIONAL ARRAYS](Data-Structures/ARRAYS/3darrays.c)
1616
* [4 DIMENSIONAL ARRAYS](Data-Structures/ARRAYS/4darrays.c)
17-
* [JAGGED ARRAYS](Data-Structures/ARRAYS/jaggedarray.c)
17+
* MISC
18+
* [JAGGED ARRAYS](Data-Structures/ARRAYS/MISC/jaggedarray.c)
1819

1920
#### LISTS
2021

@@ -24,6 +25,9 @@
2425
* DOUBLE
2526
* [DOUBLE LINKED LIST](Data-Structures/LINKED-LIST/DOUBLE/Main.c)
2627
* CIRCULAR
28+
* MEMORY EFFICIENT DOUBLE LINKED LIST
29+
* UNROLLED LINKED LIST
30+
* SKIP LIST
2731

2832
#### HEAPS
2933

docs/complexity.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ This page contains the complexities of different algorithms in this repository.
5656
* [2D ARRAY](#2d-array)
5757
* [3D ARRAY](#3d-array)
5858
* [4D ARRAY](#4d-array)
59-
* [MISC ARRAYS](#misc-arrays)
60-
* [JAGGED ARRAY](#jagged-array)
6159
* [INBUILT ARRAY CLASSES](#inbuilt-array-classes)
6260
* [ARRAYS CLASS IN JAVA](#arrays-class-in-java)
6361
* ARRAY CLASS IN C++
62+
* [MISC ARRAYS](#misc-arrays)
63+
* [JAGGED ARRAY](#jagged-array)
6464
* [LISTS](#lists)
6565
* SINGLE
6666
* [SINGULAR LINKED LIST](#singular-linked-list-having-head-and-next)

0 commit comments

Comments
 (0)