添加了初始化 log, 修复了第一个小人的 id 不对的问题
This commit is contained in:
parent
4ab54cbc2c
commit
0b60204e6b
@ -50,16 +50,18 @@ int main () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
node* first = new node;
|
node* first = new node;
|
||||||
(*first).id = 0;
|
(*first).id = 1;
|
||||||
(*first).prev = first;
|
(*first).prev = first;
|
||||||
(*first).next = first;
|
(*first).next = first;
|
||||||
int count = 1;
|
int count = 1;
|
||||||
|
std::cout << "招募了小人 #" << 1 << " ." << std::endl;
|
||||||
|
|
||||||
for (int i = 2; i <= n; i++) {
|
for (int i = 2; i <= n; i++) {
|
||||||
node* curr = new node;
|
node* curr = new node;
|
||||||
(*curr).id = i;
|
(*curr).id = i;
|
||||||
insert_one(first, curr);
|
insert_one(first, curr);
|
||||||
count++;
|
count++;
|
||||||
|
std::cout << "招募了小人 #" << 1 << " , 它前面是 #" << (*(*curr).prev).id << " , 它后面是 #" << (*(*curr).next).id << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
int counting = 0;
|
int counting = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user