[PR #579] [MERGED] [bug+docs] add docs + fix error in getMax #1009

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/579
Author: @kvedala
Created: 7/21/2020
Status: Merged
Merged: 7/22/2020
Merged by: @kvedala

Base: masterHead: fix_search


📝 Commits (5)

  • ec1b582 add docs + fix error in getMax
  • 0aed549 fix clang-tidy alerts and errors
  • aab024c rearrange comments
  • 533b11b allow subfolders in data_structure
  • 1cd54a5 set pointer to NULL after purge

📊 Changes

2 files changed (+119 additions, -54 deletions)

View changed files

📝 .github/workflows/awesome_workflow.yml (+1 -1)
📝 data_structures/binary_trees/binary_search_tree.c (+118 -53)

📄 Description

Description of Change

Added docs and fixed errors in the code

References

Closes #566

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/579 **Author:** [@kvedala](https://github.com/kvedala) **Created:** 7/21/2020 **Status:** ✅ Merged **Merged:** 7/22/2020 **Merged by:** [@kvedala](https://github.com/kvedala) **Base:** `master` ← **Head:** `fix_search` --- ### 📝 Commits (5) - [`ec1b582`](https://github.com/TheAlgorithms/C/commit/ec1b58207850e5f4dcfa3a332e1d9ffd8a706a88) add docs + fix error in getMax - [`0aed549`](https://github.com/TheAlgorithms/C/commit/0aed5496ac2c136fbf3f75867473faf4149e68d7) fix clang-tidy alerts and errors - [`aab024c`](https://github.com/TheAlgorithms/C/commit/aab024c833fa9644e5746c65bb61a96cfb6fe8ac) rearrange comments - [`533b11b`](https://github.com/TheAlgorithms/C/commit/533b11bb04fff1e84e8062d43a952ef1dfd0fd53) allow subfolders in data_structure - [`1cd54a5`](https://github.com/TheAlgorithms/C/commit/1cd54a593b7b1d7b06bf1ad32d6bcf0e23d29491) set pointer to NULL after purge ### 📊 Changes **2 files changed** (+119 additions, -54 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/awesome_workflow.yml` (+1 -1) 📝 `data_structures/binary_trees/binary_search_tree.c` (+118 -53) </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 --> Added docs and fixed errors in the code #### References <!-- Add any reference to previous pull-request or issue --> Closes #566 #### 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) - [ ] 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/579"><img src="https://gitpod.io/api/apps/github/pbs/github.com/kvedala/C.git/1cd54a593b7b1d7b06bf1ad32d6bcf0e23d29491.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:16:50 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1009