解题思路:
注意事项:
参考代码:
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <stdio.h> using namespace std; int solve(int n) { vector<int> str; for (int i = 1; i <= n; i++) str.push_back(i); int index = 0; vector<int>::iterator it = str.begin(); while (str.size() > 1) { index = (index + 2)%str.size(); it = str.begin() + index; it = str.erase(it); index = it - str.begin(); } return str.at(0); } int main(void) { int n = 0; cin >> n; cout << solve(n) << endl; return 0; }
0.0分
0 人评分
C语言训练-求素数问题 (C语言代码)浏览:1511 |
哥德巴赫曾猜测 (C语言代码)浏览:1154 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:636 |
三角形 (C++代码)记忆化搜索浏览:1319 |
【计算直线的交点数】 (C语言代码)浏览:1504 |
C语言考试练习题_保留字母 (C语言代码)浏览:743 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:582 |
C语言训练-亲密数 (C语言代码)浏览:697 |
1157题解浏览:772 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:647 |