Re: [問題] Google Interview Question (1)

作者: pnpncat (meow)   2013-03-29 16:49:15
※ 引述《RockLee (Now of all times)》之銘言:
: 原始網址:
: http://www.careercup.com/question?id=14539805
: 題目:
: Three strings say A, B, C are given to you.
: Check weather 3rd string is interleaved from string A and B.
: Ex: A="abcd" B="xyz" C="axybczd". answer is yes. o(n)
: 用 Dynamic Programming 應該可在 O(n^2) 的時間內解決
: 但要在 O(n) 的時間內解決就想不出來了 Orz...
: CareerCup 上的討論看來都無法在 O(n) 的時間內正確的解決
: 不知道板上有沒有人有什麼 idea?
這題不能直接這樣做嗎?
1. 將A, B, C分別放進stackA, stackB, stackC
2. 以下列函數判別答案是否為真
bool foo() {
while ( stackC is not empty ) {
if ( top of stackC == top of stackA ) {
pop stackC;
pop stackA;
} else if (top of stackC == top of stackB ) {
pop stackC;
pop stackB;
} else {
return false;
}
}
return true;
}
作者: flere (人間失格)   2013-03-29 18:05:00
當top stack of C跟top A,B一樣的時候,無法判斷pop哪一個stack才會是正確的~
作者: pnpncat (meow)   2013-03-29 21:12:00
咦@@ 是這樣嗎? 不是隨便pop哪一個都一樣嗎? 我把code裡面的A B對調 應該還是會得到同樣的結果吧
作者: flere (人間失格)   2013-03-29 21:21:00
A=ab,B=ac,C=acab,你看到第一個a的時候,如果popA的a的話等等看到c就會找不到對應的了(還是我誤會了嗎??XDD
作者: pnpncat (meow)   2013-03-29 21:21:00
瞭解了^^"是我想錯XD等等 不對啊 這樣等下會找到c啊...........那時候c就在stackB上面不是嗎?我剛重想了一下 這算法應該是沒錯的 就跟沒有蓋牌的接龍道理一樣 不可能會接不起來吧
作者: flere (人間失格)   2013-03-29 22:03:00
可是這時候stackB最上面會是a耶,如果你說最上面會是c的話,那我改成A=ba,B=ca,C=baca因為pop a同時有兩個stack符合,所以會不確定pop哪個stack才對~
作者: pnpncat (meow)   2013-03-29 23:46:00
確實耶@@ 雖然直接用A往下搜到完也能解 但就不是O(n)了...看來還是要多用一個容器 把沒有match的依序存起來才行
作者: ledia (付出不需要理由)   2013-03-31 02:12:00
"accc", "bcbc", "abcccbcc"
作者: pnpncat (meow)   2013-03-31 22:54:00
看來是我把它想得太簡單了@@

Links booklink

Contact Us: admin [ a t ] ucptt.com