《Cracking the Coding Interview程式設計師面試金典》----下一個元素(下一個比他大的)
時間限制:3秒 空間限制:32768K 熱度指數:740
演算法知識視訊講解題目描述
現在我們有一個int陣列,請你找出陣列中每個元素的下一個比它大的元素。
給定一個int陣列A及陣列的大小n,請返回一個int陣列,代表每個元素比他大的下一個元素,若不存在則為-1。保證陣列中元素均為正整數。
測試樣例:
[11,13,10,5,12,21,3],7
返回:[13,21,12,12,21,-1,-1]
思路:最右邊的那個值肯定沒有最大值,所以肯定是-1。初始棧為-1。從後向前計算:
(1)如果當前元素大於棧頂元素,則棧頂元素退出,如果還是大於棧頂元素,繼續退出,一直遍歷棧到-1或者小於棧頂元素。這個元素就是就是當前值的下一個比較大的元素。
(2)如果當前元素小於棧頂元素,棧頂元素就是當前值的下一個比較大的元素
程式碼如下:
#include<iostream>
#include<vector>
#include<map>
#include<queue>
#include<algorithm>
#include<set>
#include<stack>
using namespace std;
vector<int> findNext(vector<int> A, int n) {
stack<int> s;
s.push(-1);
int sz = A.size();
vector<int> res(sz);
int top;
for (int i = sz - 1; i >= 0; --i){
top = s.top();
while (top != -1 && A[i] >= top){
s.pop();
top = s.top();
}
s.push(A[i]);
res[i] = top;
}
return res;
}
void printVector(vector<int>mat, int n)
{
for (int j = 0; j < n; j++)
{
cout << mat[j] << " ";
}
cout << endl;
}
int main()
{
vector<int> v;
int m;
int temp;
while (cin >> m)
{
v.clear();
for (int j = 0; j < m; j++)
{
cin >> temp;
v.push_back(temp);
}
printVector(findNext(v, m), m);
}
return 0;
}
不懂的可以加我的QQ群:261035036(IT程式設計師面試寶典
群) 歡迎你的到來哦,看了博文給點腳印唄,謝謝啦~~
相關文章
- 《Cracking the Coding Interview程式設計師面試金典》----下一個較大元素(所有比他大中最小的)View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----清除行列View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----空格替換View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----詞頻統計View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----貓狗收容所View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----子串判斷View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----最長合成字串View程式設計師面試字串
- 《Cracking the Coding Interview程式設計師面試金典》----數字發音View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----最小調整有序View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----連結串列分割View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----原串翻轉View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----畫素翻轉View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----翻轉子串View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----最大和子矩陣View程式設計師面試矩陣
- 《Cracking the Coding Interview程式設計師面試金典》----字串變換(字典樹)View程式設計師面試字串
- 《Cracking the Coding Interview程式設計師面試金典》----實時中位數View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----整數對查詢View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----單詞最近距離View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----連結串列A+BView程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----迴文連結串列View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----確定字元互異View程式設計師面試字元
- 《Cracking the Coding Interview程式設計師面試金典》----基本字串壓縮View程式設計師面試字串
- 《Cracking the Coding Interview程式設計師面試金典》----C++過載>>和View程式設計師面試C++
- 《Cracking the Coding Interview程式設計師面試金典》----從0到n中某個數字的個數View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----最大連續數列和View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----連結串列中倒數第k個結點View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----最大字母矩陣(字母相同)View程式設計師面試矩陣
- 《Cracking the Coding Interview程式設計師面試金典》----最大子方塊(尋找01)View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----確定兩串亂序同構View程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----另類加法(不得使用+-x/運算子號)View程式設計師面試
- 【程式設計師面試金典】洪水程式設計師面試
- 程式設計師面試金典Chapter1程式設計師面試APT
- CSS下一個兄弟元素CSS
- 12個程式設計師筆試面試寶典程式設計師筆試面試
- 每個程式設計師都應該知道的下一個程式語言——Kotlin程式設計師Kotlin
- 技術面試聖經《Cracking the Coding Interview》題解C++版面試ViewC++
- 程式設計師面試金典--筆記(精華篇)程式設計師面試筆記
- JavaScript獲取下一個元素JavaScript