-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSortAStack.java
More file actions
32 lines (32 loc) · 770 Bytes
/
SortAStack.java
File metadata and controls
32 lines (32 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import java.util.*;
public class SortAStack {
public static void sort(Stack<Integer> s){
if (s.isEmpty()){
return;
}
int top=s.pop();
sort(s);
insertAtCrtPos(s , top);
}
public static void insertAtCrtPos(Stack<Integer>s ,int top){
if (s.isEmpty() || s.peek()<top){
s.push(top);
return;
}
int ele=s.pop();
insertAtCrtPos(s , top);
s.push(ele);
}
public static void main(String[] args) {
Stack<Integer> s = new Stack<>();
s.push(30);
s.push(20);
s.push(10);
s.push(40);
sort(s);
while(!s.isEmpty()){
System.out.println(s.peek());
s.pop();
}
}
}