ghostmkg / programming-language

You write code in any programming language you want. And push the code.
33 stars 79 forks source link

linked list to binary tree #24

Closed MeenakshiAM closed 5 days ago

MeenakshiAM commented 5 days ago

📝 Description

This is my first contribution for Hacktoberfest! I have implemented a solution for converting a Linked List to a Binary Tree using a breadth-first approach. The solution leverages a queue to track the nodes and builds the tree level by level.