아무것도 못먹었어 ㅠㅜ
프로그래밍 이야기 :
while(true) {
if(queue.isEmpty()) cout << \"Empty\" << endl;
if(stack.isEmpty()) cout << \"Empty\" << endl;
}
result :
Empty
Empty
Empty
Empty
Empty
Empty
Empty
Empty
...
..
.
프로그래밍 이야기 :
while(true) {
if(queue.isEmpty()) cout << \"Empty\" << endl;
if(stack.isEmpty()) cout << \"Empty\" << endl;
}
result :
Empty
Empty
Empty
Empty
Empty
Empty
Empty
Empty
...
..
.
무한 루프는 조치 않다. 데드카운터를 넣도록 하여라