2021-11-2 介绍 项目,细节 代码 约瑟夫环https://leetcode-cn.com/problems/yuan-quan-zhong-zui-hou-sheng-xia-de-shu-zi-lcof/ /* * m个人坐成一个圈,从0开始数,数到n,把这个人踢掉,然后继续从0开始,直到最后剩下n-1个人,输出这n-1个人 * */ #include "../common.h" void test(vector<pair<int, bool>>& vec, int n){ int len = vec.size...