[PR #369] [CLOSED] Add Code of Deletion and Sorting of Nodes in Binary Tree #724

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/369
Author: @GarvTambi
Created: 10/7/2019
Status: Closed

Base: masterHead: master


📝 Commits (10+)

  • 69a263b 7.c :reverse of a number with overflow check added
  • 19c2e93 9.c :pallindrome of a number with overflow check added
  • 15f4fb1 README.md updated
  • 59f998e 8.c: atoi implemented(used long int)
  • cd05073 updated 7.c and 9.c
  • 13455ac Add Splay Tree in DS
  • f550790 added RC4 stream cipher
  • fdae814 updated README.md
  • 09a763e Merge pull request #354 from Cornul11/rc4
  • 2b7fcfc Merge pull request #353 from JazzKriss21/add_splay_tree

📊 Changes

13 files changed (+775 additions, -29 deletions)

View changed files

📝 README.md (+3 -0)
cipher/rc4.c (+189 -0)
data_structures/binary_trees/Binary tree sort (+57 -0)
data_structures/binary_trees/Deletion of node in Binary Tree (+146 -0)
data_structures/binary_trees/splay_tree.c (+138 -0)
📝 exercism/hello-world/hello_world.c (+7 -5)
📝 leetcode/README.md (+2 -0)
leetcode/src/7.c (+53 -0)
leetcode/src/8.c (+77 -0)
leetcode/src/9.c (+71 -0)
📝 project_euler/Problem 07/sol.c (+5 -1)
📝 searching/LinearSearch.c (+21 -17)
📝 sorting/BubbleSort.c (+6 -6)

📄 Description

No description provided


🔄 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/369 **Author:** [@GarvTambi](https://github.com/GarvTambi) **Created:** 10/7/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`69a263b`](https://github.com/TheAlgorithms/C/commit/69a263be3fa2b4f30bcb02ca90166a323dc5ce8c) 7.c :reverse of a number with overflow check added - [`19c2e93`](https://github.com/TheAlgorithms/C/commit/19c2e9369d32f41b10b2f7f50462352c3911c077) 9.c :pallindrome of a number with overflow check added - [`15f4fb1`](https://github.com/TheAlgorithms/C/commit/15f4fb19868ddf19723169223b7d1ad68fbfc0c6) README.md updated - [`59f998e`](https://github.com/TheAlgorithms/C/commit/59f998e13fb756743e077aa7e0f4afca92a085f2) 8.c: atoi implemented(used long int) - [`cd05073`](https://github.com/TheAlgorithms/C/commit/cd05073f1124ff92712bb89fd49f0f600d2f9fd0) updated 7.c and 9.c - [`13455ac`](https://github.com/TheAlgorithms/C/commit/13455acdce366af66efe635b50743a627840da15) Add Splay Tree in DS - [`f550790`](https://github.com/TheAlgorithms/C/commit/f55079012744bbad04f7760c9b23f5a195b52bd2) added RC4 stream cipher - [`fdae814`](https://github.com/TheAlgorithms/C/commit/fdae8144585111c2cbf40b019195936959b95ce3) updated README.md - [`09a763e`](https://github.com/TheAlgorithms/C/commit/09a763eb4a0f2482f8dfe37f60972109012e168b) Merge pull request #354 from Cornul11/rc4 - [`2b7fcfc`](https://github.com/TheAlgorithms/C/commit/2b7fcfcabaed2a7176aae925bce6421c0b08440a) Merge pull request #353 from JazzKriss21/add_splay_tree ### 📊 Changes **13 files changed** (+775 additions, -29 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+3 -0) ➕ `cipher/rc4.c` (+189 -0) ➕ `data_structures/binary_trees/Binary tree sort` (+57 -0) ➕ `data_structures/binary_trees/Deletion of node in Binary Tree` (+146 -0) ➕ `data_structures/binary_trees/splay_tree.c` (+138 -0) 📝 `exercism/hello-world/hello_world.c` (+7 -5) 📝 `leetcode/README.md` (+2 -0) ➕ `leetcode/src/7.c` (+53 -0) ➕ `leetcode/src/8.c` (+77 -0) ➕ `leetcode/src/9.c` (+71 -0) 📝 `project_euler/Problem 07/sol.c` (+5 -1) 📝 `searching/LinearSearch.c` (+21 -17) 📝 `sorting/BubbleSort.c` (+6 -6) </details> ### 📄 Description _No description provided_ --- <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:14: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#724