[PR #821] [CLOSED] Implementation of binary tree in C #1340

Open
opened 2026-01-29 15:19:29 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/821
Author: @Aarti002
Created: 3/31/2021
Status: Closed

Base: masterHead: implement


📝 Commits (10+)

  • edb60d8 Create binarytree_approach2.c
  • 1bf8d83 Create top_and_vertical_traversal
  • f3724ed Create top_level_vertical_trversal.c
  • 24ff07f Update binarytree_approach2.c
  • 49ed2a0 Update top_level_vertical_trversal.c
  • c85cc82 Rename top_and_vertical_traversal to top_and_vertical_traversal.c
  • 16d5be5 Rename top_and_vertical_traversal.c to top_and_vertical_traversal1.c
  • b9a6a31 Update and rename top_and_vertical_traversal1.c to top_and_level_order_traversal1.c
  • d5cfdad Rename top_level_vertical_trversal.c to top_level_vertical_order.c
  • 3628351 Update binarytree_approach2.c

📊 Changes

3 files changed (+750 additions, -0 deletions)

View changed files

data_structures/binary_trees/binarytree_approach2.c (+271 -0)
data_structures/binary_trees/top_and_level_order_traversal1.c (+208 -0)
data_structures/binary_trees/top_level_vertical_order.c (+271 -0)

📄 Description

Binary tree implementation in C
@Panquesito7 please review this one ,also i have made single commit for one file .
Thank you!


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/821 **Author:** [@Aarti002](https://github.com/Aarti002) **Created:** 3/31/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `implement` --- ### 📝 Commits (10+) - [`edb60d8`](https://github.com/TheAlgorithms/C/commit/edb60d8c4378d0c45cc66c74f059c002e44ea766) Create binarytree_approach2.c - [`1bf8d83`](https://github.com/TheAlgorithms/C/commit/1bf8d831035336389e26a02f471912f266569cef) Create top_and_vertical_traversal - [`f3724ed`](https://github.com/TheAlgorithms/C/commit/f3724edd05718f672bd21842ffd8ff82ea7e2b2b) Create top_level_vertical_trversal.c - [`24ff07f`](https://github.com/TheAlgorithms/C/commit/24ff07f6acee3babe0b85cdf3d12ffd294ccd855) Update binarytree_approach2.c - [`49ed2a0`](https://github.com/TheAlgorithms/C/commit/49ed2a00b5b5bbf0729313e30dfe0f775902e7eb) Update top_level_vertical_trversal.c - [`c85cc82`](https://github.com/TheAlgorithms/C/commit/c85cc822d902033c6e37b12ddea20df7af35bf4e) Rename top_and_vertical_traversal to top_and_vertical_traversal.c - [`16d5be5`](https://github.com/TheAlgorithms/C/commit/16d5be51532ffc4389f9cc65176be195b76deeeb) Rename top_and_vertical_traversal.c to top_and_vertical_traversal1.c - [`b9a6a31`](https://github.com/TheAlgorithms/C/commit/b9a6a3150a120aa107ddf1d138067e649f9f1936) Update and rename top_and_vertical_traversal1.c to top_and_level_order_traversal1.c - [`d5cfdad`](https://github.com/TheAlgorithms/C/commit/d5cfdadb6562075d87bd98bfd2f2c80bf75967e2) Rename top_level_vertical_trversal.c to top_level_vertical_order.c - [`3628351`](https://github.com/TheAlgorithms/C/commit/3628351ed0a9a245c119d1726bf79cd28c6faefa) Update binarytree_approach2.c ### 📊 Changes **3 files changed** (+750 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/binary_trees/binarytree_approach2.c` (+271 -0) ➕ `data_structures/binary_trees/top_and_level_order_traversal1.c` (+208 -0) ➕ `data_structures/binary_trees/top_level_vertical_order.c` (+271 -0) </details> ### 📄 Description Binary tree implementation in C @Panquesito7 please review this one ,also i have made single commit for one file . Thank you! --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:19:29 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1340