【程式設計師面試金典】20180801
題目描述
現有一些隨機生成的數字要將其依次傳入,請設計一個高效演算法,對於每次傳入一個數字後,算出當前所有傳入數字的中位數。(若傳入了偶數個數字則令中位數為第n/2小的數字,n為已傳入數字個數)。
給定一個int陣列A,為傳入的數字序列,同時給定序列大小n,請返回一個int陣列,代表每次傳入後的中位數。保證n小於等於1000。
測試樣例:
[1,2,3,4,5,6],6
返回:[1,1,2,2,3,3]
class Middle {
public:
vector<int> getMiddle(vector<int> A, int n) {
// write code here
vector<int> maxheap;
vector<int> minheap;
vector<int> re;
for(int i=0;i<n;++i)
{
if(maxheap.size()==minheap.size())
{
if(minheap.size()>0&&minheap.front()<A[i])
{
pop_heap(minheap.begin(),minheap.end(),greater<int>());
maxheap.push_back(minheap.back());
push_heap(maxheap.begin(),maxheap.end(),less<int>());
minheap.pop_back();
minheap.push_back(A[i]);
push_heap(minheap.begin(),minheap.end(),greater<int>());
}
else
{
maxheap.push_back(A[i]);
push_heap(maxheap.begin(),maxheap.end(),less<int>());
}
}
else
{
if(maxheap.front()>A[i])
{
pop_heap(maxheap.begin(),maxheap.end(),less<int>());
minheap.push_back(maxheap.back());
push_heap(minheap.begin(),minheap.end(),greater<int>());
maxheap.pop_back();
maxheap.push_back(A[i]);
push_heap(maxheap.begin(),maxheap.end(),less<int>());
}
else
{
minheap.push_back(A[i]);
push_heap(minheap.begin(),minheap.end(),greater<int>());
}
}
//if(maxheap.size()==minheap.size())
// re.push_back(minheap.front());
//else
re.push_back(maxheap.front());
}
return re;
}
};
/*
class Middle
{
public:
vector<int> getMiddle(vector<int> A, int n)
{
// write code here
//插入排序
vector<int> result;
result.push_back(A[0]);
for(int i=1;i<n;i++)
{
int k=i;
while(k>0)
{
if(A[k]<A[k-1])
swap(A[k],A[k-1]);
else
break;
k--;
}
result.push_back(A[i/2]);
}
return result;
}
};
*/
題目描述
現有一個字典,同時給定字典中的兩個字串s和t,給定一個變換,每次可以改變字串中的任意一個字元,請設計一個演算法,計算由s變換到t所需的最少步數,同時需要滿足在變換過程中的每個串都是字典中的串。
給定一個string陣列dic,同時給定陣列大小n,串s和串t,請返回由s到t變換所需的最少步數。若無法變換到t則返回-1。保證字串長度均小於等於10,且字典中字串數量小於等於500。
測試樣例:
["abc","adc","bdc","aaa”],4,”abc","bdc"
返回:2
BFS
class Change {
public:
int countChanges(vector<string> dic, int n, string s, string t)
{
// write code here
map<string,int> mapp;
for(int i=0;i<n;i++)
{
mapp[dic[i]]=1;
}
//寬度優先搜尋
queue<string> q;
q.push(s);
map<string,int> mapped;
mapped[s]=1;
//bool flag=false; //標示是否能變換成功
int cur=1; //當前層待彈出節點數目
int next=0;
int step=0;
while(!q.empty())
{
while(cur--)
{
string str=q.front();
for(int i=0;i<str.size();i++)
{
string ss=str;
for(char c='a';c<='z';c++)
{
ss[i]=c;
if(ss==t)
{
return ++step;
}
if(mapped[ss]==0&&mapp[ss]==1)
{
next++;
mapped[ss]=1;
q.push(ss);
}
}
}
q.pop();
}
cur=next;
next=0;
step++;
}
return -1;
}
};
相關文章
- 【程式設計師面試金典】洪水程式設計師面試
- 程式設計師面試金典Chapter1程式設計師面試APT
- 程式設計師面試金典--筆記(精華篇)程式設計師面試筆記
- 《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程式設計師面試
- 智力題(程式設計師面試經典)程式設計師面試
- android程式設計師面試寶典Android程式設計師面試
- 《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程式設計師面試金典》----最大連續數列和View程式設計師面試
- Java初中級程式設計師面試題寶典Java程式設計師面試題
- 12個程式設計師筆試面試寶典程式設計師筆試面試
- JAVA程式設計師面試之《葵花寶典》等Java程式設計師面試
- 【程式設計師面試金典】三個空汽水瓶可以換一瓶汽水。程式設計師面試
- 《Cracking the Coding Interview程式設計師面試金典》----最大字母矩陣(字母相同)View程式設計師面試矩陣
- 《Cracking the Coding Interview程式設計師面試金典》----最大子方塊(尋找01)View程式設計師面試
- [演算法練習及思路-程式設計師面試金典(Java解法)]No85計算器演算法程式設計師面試Java
- 【JAVA面試資料】程式設計師面試之葵花寶典1Java面試程式設計師
- 【JAVA面試資料】程式設計師面試之葵花寶典2Java面試程式設計師
- 《Cracking the Coding Interview程式設計師面試金典》----確定兩串亂序同構View程式設計師面試