কাজটি একটি প্রদত্ত বাইনারি গাছের বাম নোডগুলি প্রিন্ট করা। প্রথমত ব্যবহারকারী ডাটা সন্নিবেশ করবে যার ফলে বাইনারি ট্রি তৈরি হবে এবং ট্রিটির বাম দৃশ্য প্রিন্ট করা হবে।
প্রতিটি নোডে সর্বাধিক 2টি শিশু থাকতে পারে তাই এখানে প্রোগ্রামটিকে অবশ্যই একটি নোডের সাথে যুক্ত বাম পয়েন্টারটি অতিক্রম করতে হবে
যদি বাম পয়েন্টারটি নাল না হয় তার মানে এটির সাথে কিছু ডেটা বা পয়েন্টার যুক্ত থাকবে যদি না থাকে তবে এটি বাম চাইল্ড প্রিন্ট করা হবে এবং একটি আউটপুট হিসাবে প্রদর্শিত হবে৷
উদাহরণ
Input : 1 0 3 2 4 Output : 1 0 2
এখানে, কমলা নোডগুলি একটি বাইনারি গাছের বাম দৃশ্য উপস্থাপন করে৷
প্রদত্ত চিত্রের নোডের সাথে ডেটা 1 একটি রুট নোড তাই এটি প্রিন্ট করা হবে বাম শিশুতে যাওয়ার চেয়ে এটি 0 প্রিন্ট করবে এবং এটি 3 এ যাবে এবং তার বাম শিশুটি প্রিন্ট করবে যা 2।
আমরা নোডের স্তর সংরক্ষণ করতে এবং বারবার অন্যটিতে স্থানান্তরিত করার জন্য পুনরাবৃত্তিমূলক পদ্ধতি ব্যবহার করতে পারি।
নিচের কোডটি প্রদত্ত অ্যালগরিদমের সি বাস্তবায়ন দেখায়
অ্যালগরিদম
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 left_view(struct node* root, int level, int* highest_level) IF root = NULL Exit End IF *highest_level < level Print root->data Set *highest_level = level End Recursively call left_view(root->left, level + 1, highest_level) Recursively call left_view(root->right, level + 1, highest_level) Step 4 -> Declare Function void left(struct node* root) Set int highest_level = 0 Call left_view(root, 1, &highest_level) Step 5-> In main() Call New passing value user want to insert as struct node* root = New(1) Call left(root) STOP
উদাহরণ
#include <stdio.h> #include <stdlib.h> //create a structure of a node struct node { int data; struct node *left, *right; //this pointer will point to the nodes attached with a node }; struct node* New(int new_data) { struct node* temp = (struct node*)malloc(sizeof(struct node)); //allocating memory to a pointer dynamically temp->data = new_data; temp->left = temp->right = NULL; return temp; } void left_view(struct node* root, int level, int* highest_level) { if (root == NULL) //if there is no node that means no data return; // this function will retrun the root node if there is only root node in a tree if (*highest_level < level) { printf("%d\t", root->data); *highest_level = level; } // Recursive function left_view(root->left, level + 1, highest_level); left_view(root->right, level + 1, highest_level); } void left(struct node* root) { int highest_level = 0; left_view(root, 1, &highest_level); } int main() { printf("left view of a binary tree is : "); struct node* root = New(1); root->left = New(0); root->right = New(3); root->right->left = New(2); root->right->right = New(4); left(root); return 0; }
আউটপুট
যদি আমরা উপরের প্রোগ্রামটি চালাই তবে এটি নিম্নলিখিত আউটপুট তৈরি করবে।
left view of a binary tree is : 1 0 2