码迷,mamicode.com
首页 > 其他好文 > 详细

折纸问题

时间:2020-02-23 21:59:17      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:一段   content   参数   stat   输入   als   题目   day   tps   

题目

请把一段纸条竖着放在桌子上,然后从纸条的下边向上方对折1次,压出折痕后展开。此时 折痕是凹下去的,即折痕突起的方向指向纸条的背面。如果从纸条的下边向上方连续对折2 次,压出折痕后展开,此时有三条折痕,从上到下依次是下折痕、下折痕和上折痕。
给定一 个输入参数N,代表纸条都从下边向上方连续对折N次,请从上到下打印所有折痕的方向。 例如:N=1时,打印: down ;N=2时,打印: down down up

解答

本质上就是将下面这棵二叉树按照 右 -> 中 -> 左 的顺序进行遍历;
技术图片

package nowcoder.easy.day04;  
  
/**  
 * 折纸问题 
 * @author GJXAIOU  
 * 将一棵头结点为 down,然后左孩子为 down,右孩子为 up 的二叉树按照 右、中、左顺序打印即可。 
 */
 public class PaperFolding {  
  
    public static void printAllFolds(int flodTime) {  
        printProcess(1, flodTime, true);  
    }  
  
    public static void printProcess(int i, int flodTime, boolean down) {  
        if (i > flodTime) {  
            return;  
        }  
        printProcess(i + 1, flodTime, true);  
        System.out.print(down ? "down " : "up ");  
        printProcess(i + 1, flodTime, false);  
    }  
  
    public static void main(String[] args) {  
        int N = 1;  
        printAllFolds(N);  
      System.out.println();  
        printAllFolds(2);  
      System.out.println();  
        printAllFolds(3);  
      System.out.println();  
        printAllFolds(4);  
    }  
}

程序运行结果

down 
down down up 
down down up down down up up 
down down up down down up up down down down up up down up up 

折纸问题

标签:一段   content   参数   stat   输入   als   题目   day   tps   

原文地址:https://www.cnblogs.com/kristse/p/12354421.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!