打印三角形和冒泡排序

Posted 初中生林开心

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了打印三角形和冒泡排序相关的知识,希望对你有一定的参考价值。

打印三角形

public class TriangleDemo {
    public static void main(String[] args) {
        for (int j = 1; j <= 5; j++) {
            for (int i = 5; i >= j; i--) {
                System.out.print(" ");
            }
            for (int i = 1; i <= j; i++) {
                System.out.print("*");
            }
            for (int i = 1; i < j; i++) {
                System.out.print("*");
            }
            System.out.println();
        }
    }
}

运行效果:

思路:

依次打印1、2、3部分就行

冒泡排序

  1. 符合要求时相邻元素互换位置
  2. 每一轮循环都会把最大/最小的元素排到最尾部
import java.util.Arrays;

public class Demo1 {
    public static void main(String[] args) {
        int[] arr = {1, 4, 5, 2, 3};
        
        int[] result = bubbleSort(arr);
        System.out.println(Arrays.toString(result));
    }

    public static int[] bubbleSort(int[] a) {
        int temp = 0;
        for (int i = 0; i < a.length - 1; i++) {
            for (int j = 0; j < a.length - 1 - i; j++) {
                if (a[j] > a[j + 1]) {
                    temp = a[j];
                    a[j] = a[j+1];
                    a[j+1] = temp;
                }
            }
        }
        return a;
    }
}

运行结果:

以上是关于打印三角形和冒泡排序的主要内容,如果未能解决你的问题,请参考以下文章

冒泡排序--打印三角形--九九乘法表

python经典题:九九乘法表和冒泡排序

冒泡排序不打印最后一个元素

976. 三角形的最大周长(冒泡排序法的活用)

for的等腰三角形 和 冒泡排序

请问这个冒泡排序代码,每一行都是啥意思呀,谢谢