当前位置: 首页 > 知识库问答 >
问题:

线程“main”java中出现异常。lang.IndexOutOfBoundsException:索引:20,大小:20

满耀
2023-03-14

我正试图将lz78代码作为学校项目编写,但我一直遇到以下错误:

线程“main”java中出现异常。lang.IndexOutOfBoundsException:索引:20,大小:20

下面是代码

public class LZ88 {
    ArrayList input = new ArrayList();
    ArrayList stored = new ArrayList();
    Iterator counter = input.iterator();
    int count=0;
    int lz78(String x)
    {
        int length=x.length();
        for(int i=0;i<x.length();i++)
        {
            input.add(x.charAt(i));
        }
        for(int i=0;i<=input.size(); i++)
        {
            if(stored.contains(input.get(i))==true)
            {
                String str ;
                StringBuilder sb = new StringBuilder();
                sb.append(input.get(i));
                sb.append(input.get(++i));
                str=sb.toString();
                while(stored.contains(str)==true)
                {
                    sb.append(input.get(++i));
                    str=sb.toString();

                }
                stored.add(str);
                System.out.println(stored);
            }
            else
            {
                stored.add(x.charAt(i));
                System.out.println(stored);
            }
        }
        return 0;
    }
    public static void main(String[] args) {
        String x ="abaababaababbbbbbbba";
        LZ88 ob = new LZ88();
        ob.lz78(x);
    }

}

共有1个答案

郑卜鹰
2023-03-14

替换(int i=0;i)的

 类似资料: