登录
首页 >  文章 >  java教程

Java数组金字塔数列生成:1,1,2,1,2,3...1,2,3...n

时间:2025-03-18 15:37:12 132浏览 收藏

本文介绍了使用Java数组生成金字塔数列(1, 1, 2, 1, 2, 3... 1, 2, 3...n)的方法。通过`arithSeries(int n)`函数,输入整数n,即可生成一个长度为n*(n+1)/2的数组,包含从1到n的递增数列,构成金字塔形状。文章提供了详细的代码实现,包括数组长度计算、循环赋值以及指针移动等步骤,清晰易懂,方便读者理解和应用Java数组处理数列问题。

java使用array打印金字塔数列

问题:

要求编写一个方法,给定一个整数n,生成一个包含[1,1,2,1,2,3,..... 1, 2, 3,…n]元素的array,array长度为1 2 3… n=n*(n 1)/2。比如:arithseries(3) → [1, 1, 2, 1, 2, 3]

代码:

public static int[] arithSeries(int n) {
    int resultLength = n * (n + 1) / 2; // length of result array
    int[] result = new int[resultLength]; // initialise array
    int pointer = 0; // the position of array
    for (int i = 1; i <= n; i++) { // if i start from 1 then the end condition should be <=n
        for (int j = 1; j <= i; j++) {// assign value from 1 to i
            result[pointer] = j;
            pointer++;// move to next pointer
        }
    }
    return result;
}

以上就是《Java数组金字塔数列生成:1,1,2,1,2,3...1,2,3...n》的详细内容,更多关于的资料请关注golang学习网公众号!

相关阅读
更多>
最新阅读
更多>
课程推荐
更多>