File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,22 @@ This is a repository containing various C++ Programs to understand the basic con
4
4
5
5
## Programs
6
6
7
- * [ Queue Using Stack ] ( https://github.com/altruistcoder/Data-Structures/blob/master/Queue/queue_using_stack.cpp ) :
7
+ * [ Queue Using Two Stacks ] ( https://github.com/altruistcoder/Data-Structures/blob/master/Queue/queue_using_stack.cpp ) :
8
8
9
9
C++ Code for implementing a queue using two stacks.
10
10
11
- * [ Queue Using Stack] ( https://github.com/altruistcoder/Data-Structures/blob/master/Queue/queue_using_single_stack.cpp ) :
11
+ * [ Queue Using Single Stack] ( https://github.com/altruistcoder/Data-Structures/blob/master/Queue/queue_using_single_stack.cpp ) :
12
12
13
13
C++ Code for implementing a queue using single stack (using recursion).
14
14
15
+ * [ Stack Using Two Queues] ( https://github.com/altruistcoder/Data-Structures/blob/master/Stack/stack_using_two_queues.cpp ) :
16
+
17
+ C++ Code for implementing a stack using two queues.
18
+
19
+ * [ Stack Using Single Queue] ( https://github.com/altruistcoder/Data-Structures/blob/master/Stack/stack_using_single_queue.cpp ) :
20
+
21
+ C++ Code for implementing a stack using single queue.
22
+
15
23
* [ Merge Sort] ( https://github.com/altruistcoder/Data-Structures/blob/master/Sorting%20Programs/merge_sort.cpp ) :
16
24
17
25
C++ Code for implementing Merge Sort algorithm.
You can’t perform that action at this time.
0 commit comments