解题思路:
注意事项:
参考代码:
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;cin >> n;
list<int>node;
for(int i = 1;i <= n;i ++)
{
node.push_back(i);
}
list<int> :: iterator it = node.begin();
while(n --)
{
for(int i = 1;i < 3;i ++)
{
it ++;
if(it == node.end()) it = node.begin();
}
list<int> :: iterator next = ++ it;
if(next == node.end()) next = node.begin();
node.erase(--it);
it = next;
}
cout << *it;
return 0;
}
0.0分
0 人评分
C语言训练-排序问题<2> (C++代码)浏览:935 |
母牛的故事 (C语言代码)浏览:478 |
不容易系列2 (C语言代码)浏览:641 |
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码)浏览:760 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:863 |
C语言程序设计教程(第三版)课后习题11.1 (C语言代码)浏览:651 |
矩形面积交 (C++代码)浏览:1204 |
C语言训练-亲密数 (C语言描述,反正怎么都能对)浏览:2256 |
C语言程序设计教程(第三版)课后习题5.8 (C语言代码)浏览:692 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:559 |