-3
假設我有意義
struct node{
int val;
node* left;
};
現在,我有一個priority_queue<node> sth;
什麼以下DO:
node temp = sth.top();// does it perform copy
sth.pop();
temp.left = sth.top(); // is this allowed?
如何從隊列中彈出一個元素,並將其存儲在temp.left
?
您已經過了一年多的時間,並且詢問了118個問題,但仍然不知道如何在問題中對代碼示例進行格式設置? – sth 2012-02-07 17:55:27
這是我第一次看到'std :: priority_queue'抱怨自己的格式。 :) – slaphappy 2012-02-07 17:59:13
@sth:聽起來像懶惰。我會遠離這一個。 (lol:http://stackoverflow.com/questions/9181321/simple-c-implementation-throwing-error) – 2012-02-07 17:59:23