[PR #602] [CLOSED] binary-tree #1046

Closed
opened 2026-01-29 15:17:04 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/602
Author: @Aarti002
Created: 9/17/2020
Status: Closed

Base: masterHead: master


📝 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 (+749 additions, -0 deletions)

View changed files

data_structures/binary_trees/binarytree_approach2.c (+270 -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

Description of Change

References

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • Added tests and example, test must pass
  • Relevant documentation/comments is changed or added
  • PR title follows semantic commit guidelines
  • Search previous suggestions before making a new one, as yours may be a duplicate.
  • I acknowledge that all my contributions will be made under the project's license.

Notes:


🔄 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/602 **Author:** [@Aarti002](https://github.com/Aarti002) **Created:** 9/17/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 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** (+749 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/binary_trees/binarytree_approach2.c` (+270 -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 #### Description of Change <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/TheAlgorithms/C-Plus-Plus/CONTRIBUTING.md --> #### References <!-- Add any reference to previous pull-request or issue --> #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [x] Added description of change - [x] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/CONTRIBUTING.md#New-File-Name-guidelines) - [x] Added tests and example, test must pass - [x] Relevant documentation/comments is changed or added - [x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [x] Search previous suggestions before making a new one, as yours may be a duplicate. - [x] I acknowledge that all my contributions will be made under the project's license. Notes: <!-- Please add a one-line description for developers or pull request viewers --> <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/602"><img src="https://gitpod.io/api/apps/github/pbs/github.com/Aarti002/C.git/55f5c43002d18a6dd92c3c36c6358a0be7cad6e7.svg" /></a> --- <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:17:04 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1046