打印三角形和冒泡排序
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部分就行
冒泡排序
- 符合要求时相邻元素互换位置
- 每一轮循环都会把最大/最小的元素排到最尾部
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;
}
}
运行结果:
以上是关于打印三角形和冒泡排序的主要内容,如果未能解决你的问题,请参考以下文章