clear all; m=zeros(1500); i=1; k=1;
while i<=1500, m(i,1)=i; i=i+1; end
while k<1500, k=k+1;
if m(3,k-1)==0, m(1,k)=m(2,k-1);
else
m(1:1497,k)=m(4:1500,(k-1));
m((1500-k):(1501-k),k)=m(1:2,k-1);
end
end
m(1,1500)
clear all; clc
x= 1:1500; t = mod(length(x),3);
x(3:3:end) = [];
x = [x(end-t+1:end),x(1:end-t)];
while length(x)>3
t = mod(length(x),3);
x(3:3:end) = [];
x = [x(end-t+1:end),x(1:end-t)];
end
x(2)
8错8错
几位的程度都短小精悍
机子上没装上matlab 没去验证了
另贴两个 c# 编的解决次问题的小程序
答案应在结果的基础上加1 程序里是从0开始编号的
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
bool[] arr = new bool[1500];
for (int i = 0; i < arr.Length ; i++)
{
arr[ i ] = true;
}
int leftNum = arr.Length;
int countNum = 0;
int index = 0;
while (leftNum > 1)
{
if (arr[index] == true)
{
countNum++;
if (countNum == 3)
{
countNum = 0;
arr[index] = false;
leftNum--;
}
}
index++;
if (index == arr.Length)
{
index = 0;
}
}
for (int i = 0; i < arr.Length; i++)
{
if (arr[ i ] == true)
Console.WriteLine(i);
}
Console .ReadLine ();
}
}
}