03 - 나무 2 List Leaves (25 점)

제목.
Given a tree, you are supposed to list all the leaves in the order of top down, and left to right.
Input Specification: Each input file contains one test case. For each case, the first line gives a positive integer N (≤10) which is the total number of nodes in the tree – and hence the nodes are numbered from 0 to N−1. Then N lines follow, each corresponds to a node, and gives the indices of the left and right children of the node. If the child does not exist, a “-” will be put at the position. Any pair of children are separated by a space.
Output Specification: For each test case, print in one line all the leaves’ indices in the order of top down, and left to right. There must be exactly one space between any adjacent numbers, and no extra space at the end of the line.
Sample Input: 8 1 - - - 0 - 2 7 - - - - 5 - 4 6 Sample Output: 4 1 5
사고의 방향
  • 이 진 트 리 구축
  • 층 차 를 옮 겨 다 니 며 잎 노드 찾기 - 대열 실현
  • 이 진 트 리 구축
  • 이 진 트 리 구조 사상 은 예전 과 똑 같 습 니 다. 우 리 는 정태 적 인 링크 를 사용 하여 구 조 했 습 니 다. 상세 한 내용 은 위의 글 을 보십시오.

  • 차례차례 편력 하 다
  • 대기 열 을 사용 하여 이 루어 집 니 다.대기 열 은 일반적으로 배열 과 링크 입 니 다. 여기 서 우 리 는 배열 의 방식 을 선택 합 니 다. 대기 열의 특징 은 먼저 나 가 는 것 입 니 다.
  • 사고: 처음에 뿌리 노드 push 를 들 어 와 왼쪽 아이 와 오른쪽 아이의 상황 을 보 세 요. 1) 모두 비어 있 으 면 잎 노드 이 고 이 노드 를 잎 노드 배열 에 넣 습 니 다.2) 왼쪽 아이 가 비어 있 지 않 으 면 왼쪽 아 이 를 push 로 넣는다 3) 오른쪽 아이 가 비어 있 지 않 으 면 오른쪽 아 이 를 Push 로 넣는다
  • 코드
    #include 
    #include 
    #define Null -1
    #define MaxTree 10
    #define Tree int
    
    struct TreeNode
    {
        int Data;
        Tree Left;
        Tree Right;
    }T[MaxTree], queue[MaxTree];
    
    int first = -1, last = -1;
    
    Tree BuildTree(struct TreeNode T[]);
    void Push(struct TreeNode TN);
    struct TreeNode Pop();
    void Travel(Tree R);
    
    int N;
    
    
    int main()
    {
        Tree R;
        R = BuildTree(T);
        Travel(R);
        return 0;
    }
    
    Tree BuildTree(struct TreeNode T[])
    {
    	int i,Root;
    	char cl,cr;
    //	int i;
    //	int N;
    	scanf("%d",&N);
    	int check[N];
    	if(N)
    	{
    		
    		for(i = 0; i < N;i++) check[i] = 0;
    		for(i = 0;i < N;i++){
    			T[i].Data = i;
    			scanf("
    %c %c"
    ,&cl,&cr);// // scanf , scanf , // 1. cl if(cl!='-'){ // '2'-'0' = 2 T[i].Left = cl-'0'; check[T[i].Left] = 1; } // Null -1 else T[i].Left = Null; // 2. cr if(cr!='-'){ // '2'-'0' = 2 T[i].Right = cr-'0'; check[T[i].Right] = 1; } // Null -1 else T[i].Right = Null; } for(i = 0; i < N;i++){ if(!check[i]) break; } Root = i; } return Root; } void Push(struct TreeNode TN) { queue[++last] = TN; } struct TreeNode Pop() { return queue[++first]; } void Travel(Tree R) { int leaves[N]; int i,k = 0; struct TreeNode tmp; Push(T[R]); for(i = 0;i < N;i++) { tmp = Pop(); if(tmp.Left == -1 && tmp.Right == -1){ leaves[k++] = tmp.Data; } if(tmp.Left != -1){ Push(T[tmp.Left]); } if(tmp.Right != -1){ Push(T[tmp.Right]); } } for (i = 0; i < k-1;i++) { printf("%d ",leaves[i]); } printf("%d
    "
    ,leaves[k-1]); }

    망각 점
    + + i 와 i +
  • i++
  • x = i ++;    //  x  i  1,  i 1
    
  • ++i
  • x = ++i;    //  i 1,   x  i  1
    

    감상
    프로 그래 밍 소 백, 이 문 제 를 보 니 정말 손 쓸 수가 없 었 습 니 다. 하지만 위의 문 제 는 구조 트 리 와 같 습 니 다. 이 진 트 리 의 구축 방향 은 이것 과 똑 같 습 니 다. 그리고 스 택 과 대열 을 복습 하고 계속 화 이 팅 하 세 요 ~

    좋은 웹페이지 즐겨찾기