Skip to content

Commit 274b96c

Browse files
committed
Adds sort a stack
1 parent 1c7faa7 commit 274b96c

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,6 @@ My solutions to competitive programming problems in [Geeks for Geeks](https://au
7373

7474

7575

76-
77-
7876
## Array or Vector
7977

8078
| Name | Solution |
@@ -83,10 +81,14 @@ My solutions to competitive programming problems in [Geeks for Geeks](https://au
8381
|Count 1s in sorted array|[C++](c++/count-1-in-sorted-array.cpp)|
8482
|Search in sorted array|[C++](c++/search-in-sorted-array.cpp)|
8583
|Insert at end of array|[C++](c++/array-insert-at-end.cpp)|
84+
|Remove duplicate elements|[C++](c++/remove-duplicate-elements.cpp)|
8685
|Search element in array|[C++](c++/search0an0element-in-an-array.cpp)|
8786
|Check if two arrays are equals|[C++](c++/check-if-two-arrays-are-equals.cpp)|
8887
|Generate Permutation(single case example)|[C++](c++/generate-permutation.cpp)|
8988
|Min and max element|[C++](c++/max-and-mimum.cpp)|
89+
|Is array sorted|[C++](c++/is-array-sorted.cpp)|
90+
|Array insert at index|[C++](c++/array-insert-at-index.cpp)|
91+
|Merge two sorted arrays O(1) space |[C++](c++/merge-two-sorted-arrays.cpp)|
9092
|Union of two sorted array|[C++](c++/union-of-two-sorted-arrays-1587115621.cpp)|
9193
|Index of an extra element|[C++](c++/index-of-an-extra-element.cpp)|
9294
|Binary array sorting|[C++](c++/binary-array-sorting.cpp)|
@@ -253,7 +255,7 @@ My solutions to competitive programming problems in [Geeks for Geeks](https://au
253255
|Reverse string using Stack|[C++](c++/reverse-string-with-stack.cpp)|
254256
|Implement stack with array|[C++](c++/stack-implementation-with-array.cpp)|
255257
|Implement stack using Linked List|[C++](c++/implement-stack-using-linked-list.cpp)|
256-
258+
|Sort a stack|[C++](c++/sort-a-stack.cpp)|
257259

258260

259261
## Queue and Dequeu

c++/sort-a-stack.cpp

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// https://practice.geeksforgeeks.org/problems/sort-a-stack/1/?track=ppc-stack&batchId=221
2+
void SortedStack :: sort()
3+
{
4+
vector<int> vec;
5+
while(!s.empty())
6+
{
7+
vec.push_back(s.top());
8+
s.pop();
9+
}
10+
11+
std::sort(vec.begin(), vec.end());
12+
13+
for(int i = 0; i < vec.size(); i++)
14+
s.push(vec[i]);
15+
}

0 commit comments

Comments
 (0)