标签:i++ 题目 turn class ast col off 记录 style
0~n-1这n个数字排成一个圆圈,从0开始,每次删除第m个数字,求出圆圈里剩下的最后一个数字
直接用数组模拟圆圈,模拟删除的过程
class Solution { public: int LastRemaining_Solution(int n, int m) { if(n<1||m<1) return -1; int[] array = new int[n]; int i = -1, step = 0, count = n; while(count > 0){ //跳出循环时将最后一个元素也设置为了-1 i++; //指向上一个被删除对象的下一个元素。 if(i >= n) i = 0; //模拟环。 if(array[i] == -1) continue; //跳过被删除的对象。 step++; //记录已走过的。 if(step == m) { //找到待删除的对象。 array[i] = -1; step = 0; count--; } } return i;//返回跳出循环时的i,即最后一个被设置为-1的元素 } };
标签:i++ 题目 turn class ast col off 记录 style
原文地址:https://www.cnblogs.com/shiganquan/p/9351821.html