题目描述:给定一个只包括 ‘(‘,’)’,’{‘,’}’,’[‘,’]’ 的字符串,判断字符串是否有效。 左括号必须用相同类型的右括号闭合。 左括号必须以正确的顺序闭合。 注意空字符串可被认为是有效字符串。 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 const strKey = new Map ();strKey.set ("{" , "}" ); strKey.set ("[" , "]" ); strKey.set ("(" , ")" ); const left = ['{' , '[' , '(' ]const isValid = function (str ) { if (!str) return true ; const stack = []; const len = str.length ; for (let i = 0 ; i < len; i++) { const item = str[i]; if (left.indexOf (item) > -1 ) { stack.push (strKey.get (item)); } else { if (!stack.length || stack.pop () !== item) { return false ; } } } return !stack.length } const str1 = "{}[]()" ;const str2 = "{[()]}" ;const str3 = "{}{}{()" ;const str4 = "{[()]}}}" ;const str5 = "{[)()]}" ;console .log (isValid (str1)) console .log (isValid (str2)) console .log (isValid (str3)) console .log (isValid (str4)) console .log (isValid (str5))
题目描述: 根据每日气温列表,请重新生成一个列表,对应位置的输出是需要再等待多久温度才会升高超过该日的天数。如果之后都不会升高,请在该位置用 0 来代替。 例如,给定一个列表 temperatures = [73, 74, 75, 71, 69, 72, 76, 73],你的输出应该是 [1, 1, 4, 2, 1, 1, 0, 0]。
提示:气温 列表长度的范围是 [1, 30000]。每个气温的值的均为华氏度,都是在 [30, 100] 范围内的整数。
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 const temp = [73 , 74 , 75 , 71 , 69 , 72 , 76 , 73 ];const dailyTemperatures = function (arr ) { const len = arr.length ; let resArr = (new Array (len)).fill (0 ); let stack = []; for (var i = 0 ; i < len; i++) { const item = arr[i]; while (stack.length && item > arr[stack[stack.length - 1 ]]) { let top = stack.pop (); resArr[top] = i - top } stack.push (i) } return resArr } console .log (dailyTemperatures (temp))
题目描述:设计一个支持 push ,pop ,top 操作,并能在常数时间内检索到最小元素的栈。 栈的设计——“最小栈”问题
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 function MinStack ( ) { this .stack = []; this .minStack = []; } MinStack .prototype = { constructor : MinStack , push : function (data ) { if (data === null || data === undefined ) return ; this .stack .push (data); if (!this .minStack .length || this .minStack [this .minStack .length - 1 ] >= data) { this .minStack .push (data) } }, pop : function ( ) { if (!this .stack .length ) return null ; if (this .stack .pop () === this .minStack [this .minStack .length - 1 ]) { this .minStack .pop () } }, getTop : function ( ) { if (!this .stack .length ) return null return this .stack [this .stack .length - 1 ]; }, getMin : function ( ) { if (!this .minStack .length ) return null ; return this .minStack [this .minStack .length - 1 ] } } const Stack = new MinStack ();Stack .push (0 )Stack .push (1 )Stack .push (-1 )Stack .push (-3 )Stack .push (1 )Stack .push (7 )Stack .pop ()Stack .push (6 )console .log (Stack .stack ) console .log (Stack .minStack ) console .log (Stack .getMin ()) console .log (Stack .getTop ())
题目描述:使用栈实现队列的下列操作: push(x)
– 将一个元素放入队列的尾部。pop()
– 从队列首部移除元素。peek()
– 返回队列首部的元素。empty()
– 返回队列是否为空。示例: MyQueue queue = new MyQueue(); queue.push(1); queue.push(2); queue.peek(); // 返回 1 queue.pop(); // 返回 1 queue.empty(); // 返回 false
说明: 你只能使用标准的栈操作 – 也就是只有 push to top, peek/pop from top, size, 和 is empty 操作是合法的。 你所使用的语言也许不支持栈。你可以使用 list 或者 deque(双端队列)来模拟一个栈,只要是标准的栈操作即可。 假设所有操作都是有效的 (例如,一个空的队列不会调用 pop 或者 peek 操作)。
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 function MyQueue ( ) { this .stack1 = []; this .stack2 = []; } MyQueue .prototype .push = function (x ) { this .stack1 .push (x) } MyQueue .prototype .pop = function ( ) { if (!this .stack2 .length && this .stack1 .length ) { while (this .stack1 .length ) { this .stack2 .push (this .stack1 .pop ()) } } return this .stack2 .pop () } MyQueue .prototype .peek = function ( ) { if (!this .stack2 .length && this .stack1 .length ) { while (this .stack1 .length ) { this .stack2 .push (this .stack1 .pop ()); } } const len = this .stack2 .length ; return this .stack2 [len - 1 ]; } MyQueue .prototype .empty = function ( ) { return !this .stack1 .length && !this .stack2 .length } const Queue = new MyQueue ();console .log (Queue .isEmpty ()) Queue .push (1 )Queue .push (2 )console .log (Queue .isEmpty ()) console .log (Queue .peek ()) console .log (Queue .pop ()) console .log (Queue .pop ()) console .log (Queue .empty ())