摘要:
leetcode 215. kth largest in an array https://leetcode.com/problems/kth largest element in an array/?tab=Description 方法1:直接按从大到小排序,返回第k个。 Time: O(n lo 阅读全文
摘要:
https://leetcode.com/problems/next greater element ii/?tab=Description 思路1:Brute Force 简单粗暴的方法是遍历数组,对每一个位置的元素,往后查找第一个比它大的,走到终点再折回头部查找,直到回到该位置。 Time co 阅读全文
摘要:
https://leetcode.com/problems/reverse words in a string/?tab=Description 做法1 先整体反转 再定位到每一个word,做局部反转,同时in place挪走空格 最后pop掉尾巴的空格 Time complexity: O(n) 阅读全文
摘要:
https://leetcode.com/problems/evaluate reverse polish notation/?tab=Description 开一个栈,遇到数字压栈,遇到运算符就从栈中弹出两个元素做相应的计算然后再压回去。 Time complexity: O(n) Space c 阅读全文