1. 程式人生 > 實用技巧 >二叉樹對稱-遞迴

二叉樹對稱-遞迴

技術標籤:演算法java

對星號採用迴圈的形式排列
在這裡插入圖片描述

package one;

public class oneday2 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		for(int i=1;i<5;i++) {   //這裡採用空格進行對星號填充位置
			System.out.println(" ");
			for(int j=0;j<4-i;j++) {
				System.out.print(" ");
			}
for(int h=0;h<2*i-1;h++) {//對星號進行輸出 System.out.print("*"); } } } }