国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

leetcode-496-Next Greater Element I

2019-11-11 01:47:24
字體:
來源:轉載
供稿:網友

問題

題目:[leetcode-496]

思路

簡單題,仔細一點。

代碼

class Solution {public: vector<int> nextGreaterElement(vector<int>& findNums, vector<int>& nums) { int sz1 = findNums.size(); int sz2 = nums.size(); std::vector<int> ret(sz1, int()); for(int i = 0; i < sz1; ++i){ int j = 0; for(j = 0;j < sz2; ++j){ if( nums[j] == findNums[i] ) break; } if(j==sz2) ret[i] = -1; else{ int k = 0; for(k = j + 1; k < sz2; ++k){ if(nums[k] > nums[j]){ ret[i] = nums[k]; break; } } if(k==sz2) ret[i] = -1; } } return ret; }};

思路1

當然,這題有O(N)復雜度的解法。 參考這個鏈接[Next Greater Element]。當然這個題目本生的意思和題面有一點不同。該題是求數組中任意一個元素的下一個較大元素。 算法如下:

Method 2 (Using Stack) Thanks to pchild for suggesting following apPRoach. 1) Push the first element to stack. 2) Pick rest of the elements one by one and follow following steps in loop. ….a) Mark the current element as next. ….b) If stack is not empty, then pop an element from stack and compare it with next. ….c) If next is greater than the popped element, then next is the next greater element for the popped element. ….d) Keep popping from the stack while the popped element is smaller than next. next becomes the next greater element for all such popped elements ….g) If next is smaller than the popped element, then push the popped element back. 3) After the loop in step 2 is over, pop all the elements from stack and print -1 as next element for them.

簡言之,挨個判斷數組元素。如果棧頂比當前元素小,那么棧頂的nextGreater元素就是當前元素。繼續判斷棧頂和當前元素的關系,知道棧頂比當前元素大或者是棧空,將當前元素入棧即可。 挨個判斷結束之后,棧中剩余元素的nextGreater元素均是-1

代碼1

class Solution {public: vector<int> nextGreaterElement(vector<int>& findNums, vector<int>& nums) { int sz1 = findNums.size(); int sz2 = nums.size(); std::vector<int> ret(sz1, int()); if(!sz1 || !sz2) return ret; std::map<int, int> mapper; std::stack<int> stk; stk.push(nums[0]); for(int i = 1; i < sz2; ++i){ while(!stk.empty() && stk.top() < nums[i] ){ mapper[stk.top()] = nums[i]; stk.pop(); } stk.push(nums[i]); } while(!stk.empty()){ mapper[stk.top()] = -1; stk.pop(); } for(int i = 0; i < sz1; ++i){ ret[i] = mapper[findNums[i]]; } return ret; }};
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 忻州市| 达尔| 织金县| 专栏| 安康市| 武川县| 南漳县| 玉树县| 北票市| 万全县| 古交市| 吉木乃县| 当涂县| 正镶白旗| 海林市| 榆中县| 重庆市| 浦东新区| 西藏| 印江| 台山市| 西盟| 南安市| 临湘市| 申扎县| 万安县| 资源县| 峨眉山市| 会宁县| 庆城县| 鄯善县| 卢湾区| 鹤峰县| 中山市| 安阳县| 灯塔市| 八宿县| 张家口市| 兴国县| 东丽区| 乐业县|