[PR #562] [CLOSED] segment tree headers added #986

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/562
Author: @vakhokoto
Created: 7/9/2020
Status: Closed

Base: masterHead: segment-tree


📝 Commits (7)

  • a33144d segment tree headers added
  • 51163fd line endings added
  • c27c97c main.c name changed to test.c to better descride the function of the file
  • 4c5b8f6 structure elements argument comments fixed, also template test function added in test.c
  • ef05a91 #include <stdlib.h> - was missing in segemnt_tree.c
  • 11b1204 segment_tree.c file moved up one directory and data_structures/segment_tree directory deleted
  • 1c7a4d4 author info and description added

📊 Changes

1 file changed (+170 additions, -0 deletions)

View changed files

data_structures/segment_tree.c (+170 -0)

📄 Description

Description of Change

Segment tree headers added I will continue working on implementation if there is anyone willing to contribute in this part I will be gratefull to welcome.

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/562 **Author:** [@vakhokoto](https://github.com/vakhokoto) **Created:** 7/9/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `segment-tree` --- ### 📝 Commits (7) - [`a33144d`](https://github.com/TheAlgorithms/C/commit/a33144d7401ace9fa89344805aa615315a7fde4a) segment tree headers added - [`51163fd`](https://github.com/TheAlgorithms/C/commit/51163fdb2f0585935f142e0e5931cf26439e49d6) line endings added - [`c27c97c`](https://github.com/TheAlgorithms/C/commit/c27c97ca8209e600b19ec87a30a9da6ef36181b3) main.c name changed to test.c to better descride the function of the file - [`4c5b8f6`](https://github.com/TheAlgorithms/C/commit/4c5b8f66f380264c3f102ec3f0ab297db3fc9b1c) structure elements argument comments fixed, also template test function added in test.c - [`ef05a91`](https://github.com/TheAlgorithms/C/commit/ef05a917338ebeeb181bf142631f4541cd01ba09) #include <stdlib.h> - was missing in segemnt_tree.c - [`11b1204`](https://github.com/TheAlgorithms/C/commit/11b1204ff4f4c0ba8754e326842df7d2f0016dea) segment_tree.c file moved up one directory and data_structures/segment_tree directory deleted - [`1c7a4d4`](https://github.com/TheAlgorithms/C/commit/1c7a4d485e6d9eedea3d4e17d6e5ef5cbc93caad) author info and description added ### 📊 Changes **1 file changed** (+170 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/segment_tree.c` (+170 -0) </details> ### 📄 Description #### Description of Change Segment tree headers added I will continue working on implementation if there is anyone willing to contribute in this part I will be gratefull to welcome. #### References <!-- Add any reference to previous pull-request or issue --> #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [ ] Added description of change - [ ] 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 - [ ] Relevant documentation/comments is changed or added - [ ] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/CONTRIBUTING.md#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: <!-- Please add a one-line description for developers or pull request viewers --> <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/562"><img src="https://gitpod.io/api/apps/github/pbs/github.com/vakhokoto/C.git/1c7a4d485e6d9eedea3d4e17d6e5ef5cbc93caad.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:37 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#986