-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy path121-Stack.js
74 lines (58 loc) · 1.45 KB
/
121-Stack.js
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
Diseniar un algoritmo que obtenga el valor minimo de un Stack, sin cambiar los funcionamientos tradicionales del mismo
* Input: `(tope) 5-1-4-2`
* Output: `1`
*/
// ----------- Implementacion con Nodos -------------------
class Node {
constructor (data, nextNode) {
this.data = data;
this.next = nextNode;
}
}
class Stack {
constructor() {
this.top = null;
}
// Agrega un elemento a la cima de la pila
push(item) {
let newTop = new Node(item, this.top);
this.top = newTop;
}
// Elimina el primer elemento de la pila, el de la cima y devuelve su valor
pop() {
if (this.isEmpty()) return null;
let aux = this.top;
this.top = this.top.next;
return aux.data;
}
// Retorna el elemento de la cima de la pila sin eliminarlo
peek() {
return this.top;
}
isEmpty() {
return this.top == null;
}
}
// --------------------------
const getMinimo = (stack) => {
let minValue = 10000000;
while (!stack.isEmpty()) {
let current = stack.pop();
if (current < minValue){
minValue = current;
}
}
return minValue;
}
const testStack = new Stack();
testStack.push(2);
testStack.push(4);
testStack.push(1);
testStack.push(5);
testStack.push(8);
testStack.push(5);
testStack.push(1);
testStack.push(9);
testStack.push(10);
console.log(getMinimo(testStack));