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

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

leetcode-496-Next Greater Element I

2019-11-11 01:43:46
字體:
供稿:網(wǎng)友

問題

題目:[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)復(fù)雜度的解法。 參考這個鏈接[Next Greater Element]。當然這個題目本生的意思和題面有一點不同。該題是求數(shù)組中任意一個元素的下一個較大元素。 算法如下:

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.

簡言之,挨個判斷數(shù)組元素。如果棧頂比當前元素小,那么棧頂?shù)膎extGreater元素就是當前元素。繼續(xù)判斷棧頂和當前元素的關(guān)系,知道棧頂比當前元素大或者是棧空,將當前元素入棧即可。 挨個判斷結(jié)束之后,棧中剩余元素的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; }};
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 寿阳县| 中江县| 彭水| 库伦旗| 桐柏县| 曲沃县| 昌宁县| 新绛县| 外汇| 任丘市| 七台河市| 华容县| 中牟县| 墨脱县| 林周县| 陕西省| 舞阳县| 芦溪县| 东海县| 巴马| 梓潼县| 基隆市| 方城县| 易门县| 杭锦旗| 绍兴市| 綦江县| 孝义市| 南昌市| 措勤县| 阜城县| 苏尼特左旗| 临安市| 临澧县| 沂水县| 克东县| 马公市| 郯城县| 浦北县| 永和县| 渑池县|