Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

พิมพ์ Leaf Nodes ที่ระดับที่กำหนดในภาษา C


งานเกี่ยวข้องกับการพิมพ์โหนดปลายสุดของไบนารีทรีที่ระดับ k ที่กำหนด ซึ่งผู้ใช้ระบุ

Leaf nodes เป็นโหนดปลายที่มีตัวชี้ซ้ายและขวาเป็น NULL ซึ่งหมายความว่าโหนดนั้นไม่ใช่โหนดหลัก

ตัวอย่าง

Input : 11 22 33 66 44 88 77
Output : 88 77

พิมพ์ Leaf Nodes ที่ระดับที่กำหนดในภาษา C

ในที่นี้ k แสดงถึงระดับของต้นไม้ที่ต้องพิมพ์ วิธีการที่ใช้ในที่นี้คือการสำรวจทุกโหนดและตรวจสอบว่าโหนดนั้นมีตัวชี้หรือไม่ แม้ว่าจะมีตัวชี้หนึ่งตัวที่หมายความว่าซ้ายหรือขวาหรือทั้งสองอย่างมากกว่าโหนดนั้นจะไม่สามารถเป็นโหนดปลายสุดได้

การข้ามแต่ละโหนดซ้ำๆ โดยใช้เทคนิคการเรียงลำดับระดับ โดยที่โหนดจะข้ามระดับอย่างชาญฉลาดโดยเริ่มจากซ้าย → รูท → ขวา

โค้ดด้านล่างแสดงการใช้งาน c ของอัลกอริธึมที่ให้มา

อัลกอริทึม

START
   Step 1 -> create node variable of type structure
      Declare int data
      Declare pointer of type node using *left, *right
   Step 2 -> create function for inserting node with parameter as new_data
      Declare temp variable of node using malloc
      Set temp->data = new_data
      Set temp->left = temp->right = NULL
      return temp
   Step 3 -> declare Function void leaf(struct node* root, int level)
      IF root = NULL
         Exit
      End
      IF level = 1
         IF root->left == NULL && root->right == NULL
            Print root->data
         End
      End
      ELSE IF level>1
         Call leaf(root->left, level - 1)
         Call leaf(root->right, level - 1)
      End
   Step 4-> In main()
      Set level = 4
      Call New passing value user want to insert as struct node* root = New(1)
      Call leaf(root,level)
STOP

ตัวอย่าง

include<stdio.h>
#include<stdlib.h>
//structre of a node defined
struct node {
   struct node* left;
   struct node* right;
   int data;
};
//structure to create a new node
struct node* New(int data) {
   struct node* temp = (struct node*)malloc(sizeof(struct node));
   temp->data = data;
   temp->left = NULL;
   temp->right = NULL;
   return temp;
}
//function to found leaf node
void leaf(struct node* root, int level) {
   if (root == NULL)
      return;
   if (level == 1) {
      if (root->left == NULL && root->right == NULL)
      printf("%d\n",root->data);
   } else if (level > 1) {
      leaf(root->left, level - 1);
      leaf(root->right, level - 1);
   }
}
int main() {
   printf("leaf nodes are: ");
   struct node* root = New(11);
   root->left = New(22);
   root->right = New(33);
   root->left->left = New(66);
   root->right->right = New(44);
   root->left->left->left = New(88);
   root->left->left->right = New(77);
   int level = 4;
   leaf(root, level);
   return 0;
}

ผลลัพธ์

หากเรารันโปรแกรมด้านบน มันจะสร้างผลลัพธ์ต่อไปนี้

leaf nodes are: 88 77