环圈报数就是围一圈人,每一次数数数到三的人自动出圈,再接着数,

用数据结构的思想实现

public class Count3Quit
{
    public static void main(String[] args)
    {
        boolean[] arr = new boolean[500];
        
        for(int i=0; i<arr.length; i++)
        {
            arr[i] = true;
        }

int leftCount = arr.length;
        int countNum = 0;
        int index = 0;

while(leftCount > 1)
        {
            if(arr[index] == true)
            {
                countNum++;
                if(countNum == 3)
                {
                    countNum =0;
                    arr[index] = false;
                    leftCount --;
                }
            }

index ++;
            
            if(index == arr.length)
            {
                index = 0;
            }
        }
        for(int i=0; i<arr.length;i++)
        {
            if(arr[i] == true)
            {
                System.out.println(i);
            }
        }
    }
}

用面向对象的思想实现

public class Count3Quit2
{
    public static void main(String[] args)
    {
        KidCircle kc = new KidCircle(500);
        int countNum = 0;
        Kid k = kc.first;
        while(kc.count>1)
        {
            countNum++;
            if(countNum == 3)
            {
                countNum = 0;
                kc.del(k);
            }
            k = k.right;
        }

System.out.println(kc.first.id);
    }
}

class Kid
{
    int id;
    Kid left;
    Kid right;

}

class KidCircle
{
    int count = 0;
    Kid first,last;

KidCircle(int n)
    {
        for(int i=0; i<n; i++)
        {
            add();
        }
    }

void add()
    {
        Kid k = new Kid();
        k.id = count;
        if(count == 0)
        {
            first = k;
            last = k;
            k.left = k;
            k.right = k;
        }
        else
        {
            last.right = k;
            k.left = last;
            k.right = first;
            first.left = k;
            last = k;
        }
        count++;
    }

void del (Kid k)
    {
        if(count <= 0)
        {
        return ;
        }
        else if(count == 1)
        {
            first = last = null;
        }
        else
        {
            k.left.right = k.right;
            k.right.left = k.left;

if(k == first)
            {
                first = k.right;
            }
            else if(k == last)
            {
                last = k.left;
            }
        }
        count--;
    }

}

最新文章

  1. 关于HttpHandler的相关知识总结
  2. gc是什么,什么时候需要gc
  3. html5 svg动画
  4. 在Winform开发框架中,利用DevExpress控件实现数据的快速录入和选择
  5. 如何开启ubuntu的SSH服务(不要和openssl搞混淆了)
  6. 第二章 Background &amp; Borders 之 Multiple borders
  7. JavaScript--DOM事件(笔记)
  8. Drools引擎学习
  9. 201521123044 《Java程序设计》第11周学习总结
  10. 微信小程序授权获取用户详细信息openid
  11. 【线程系列五】什么时候释放锁—wait()、notify()
  12. ASP.NET Core 实战:Linux 小白的 .NET Core 部署之路
  13. Filebeat 启动关闭流程
  14. Python函数二(函数名,闭包,迭代器)之杵臼之交
  15. Eclipse的DEgub调试乱跳
  16. Postman 接口测试
  17. Codeforces 1090A - Company Merging - [签到水题][2018-2019 Russia Open High School Programming Contest Problem A]
  18. ADB not responding
  19. Resource View Window of Visual Studio
  20. jpa-入门测试

热门文章

  1. linux安装Eclipse c++环境
  2. C语言总结之---关键字
  3. MSSQL- select @@identity的用法
  4. Decoding BASE64 in ABAP
  5. Servlet的学习之Session(2)
  6. Python WxPython 的安装以及使用
  7. [Android学习笔记]Fragment使用
  8. uva 10069 Distinct Subsequences(高精度 + DP求解子串个数)
  9. IIS部署asp.net报404错误
  10. CURD特性