[PR #411] [CLOSED] sorting algorithm BubbleSort #787

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/411
Author: @soyo-kaze
Created: 10/15/2019
Status: Closed

Base: masterHead: master


📝 Commits (10+)

  • 6f50f4a Added a program that evaluates if two words are anagrams
  • 5236d89 Create DoublyLinkedListInsertion.c
  • 82985e5 Added primes_in_range.c
  • c030fd1 Update isArmstrong.c
  • 1e5afcc updated README.md
  • 80997b9 updated CodingGuidelines.md
  • 89069e2 updated CodingGuidelines.md
  • bbd54a9 updated .gitignore
  • 4cd255d updated shellSort.c
  • ac66bb4 Update countingSort.c

📊 Changes

26 files changed (+1360 additions, -146 deletions)

View changed files

📝 .gitignore (+2 -0)
📝 CodingGuidelines.md (+5 -2)
📝 README.md (+17 -2)
cipher/rc4.c (+189 -0)
data_structures/binary_trees/splay_tree.c (+138 -0)
data_structures/bubblesort.cpp (+22 -0)
data_structures/linked_list/DoublyLinkedListInsertion.c (+247 -0)
📝 exercism/hello-world/hello_world.c (+7 -5)
📝 leetcode/README.md (+10 -2)
leetcode/src/2.c (+43 -0)
leetcode/src/21.c (+56 -0)
leetcode/src/28.c (+37 -0)
leetcode/src/4.c (+29 -0)
leetcode/src/5.c (+64 -0)
leetcode/src/7.c (+53 -0)
leetcode/src/8.c (+75 -0)
leetcode/src/9.c (+71 -0)
misc/Primes_in_range.c (+54 -0)
misc/areAnagrams.c (+56 -0)
📝 misc/isArmstrong.c (+46 -21)

...and 6 more files

📄 Description

BubbleSort algorithm for sorting integers in an array


🔄 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/411 **Author:** [@soyo-kaze](https://github.com/soyo-kaze) **Created:** 10/15/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`6f50f4a`](https://github.com/TheAlgorithms/C/commit/6f50f4a38b7b05a354bfc09c6a1404e22c4a5427) Added a program that evaluates if two words are anagrams - [`5236d89`](https://github.com/TheAlgorithms/C/commit/5236d893f87eb1ce117fcc90bb95800c44bade8e) Create DoublyLinkedListInsertion.c - [`82985e5`](https://github.com/TheAlgorithms/C/commit/82985e5b6ac590d76283473b56efea21f8c26827) Added primes_in_range.c - [`c030fd1`](https://github.com/TheAlgorithms/C/commit/c030fd18bec0c4b76cf35206b48188579d1ecaf2) Update isArmstrong.c - [`1e5afcc`](https://github.com/TheAlgorithms/C/commit/1e5afcc8e0d863d267e62a4c00b1f86d42000883) updated README.md - [`80997b9`](https://github.com/TheAlgorithms/C/commit/80997b94b08556fa9296aebe1777550ef95b03c3) updated CodingGuidelines.md - [`89069e2`](https://github.com/TheAlgorithms/C/commit/89069e2d5ece298489b2d5e3f34b7f891bde8882) updated CodingGuidelines.md - [`bbd54a9`](https://github.com/TheAlgorithms/C/commit/bbd54a9f48b15acfb1d9dd274c25020989f19c33) updated .gitignore - [`4cd255d`](https://github.com/TheAlgorithms/C/commit/4cd255d2902f000c10c54d81dbbb08062bda31ca) updated shellSort.c - [`ac66bb4`](https://github.com/TheAlgorithms/C/commit/ac66bb494bd551fca377bd601d7b657bdda7b4f0) Update countingSort.c ### 📊 Changes **26 files changed** (+1360 additions, -146 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+2 -0) 📝 `CodingGuidelines.md` (+5 -2) 📝 `README.md` (+17 -2) ➕ `cipher/rc4.c` (+189 -0) ➕ `data_structures/binary_trees/splay_tree.c` (+138 -0) ➕ `data_structures/bubblesort.cpp` (+22 -0) ➕ `data_structures/linked_list/DoublyLinkedListInsertion.c` (+247 -0) 📝 `exercism/hello-world/hello_world.c` (+7 -5) 📝 `leetcode/README.md` (+10 -2) ➕ `leetcode/src/2.c` (+43 -0) ➕ `leetcode/src/21.c` (+56 -0) ➕ `leetcode/src/28.c` (+37 -0) ➕ `leetcode/src/4.c` (+29 -0) ➕ `leetcode/src/5.c` (+64 -0) ➕ `leetcode/src/7.c` (+53 -0) ➕ `leetcode/src/8.c` (+75 -0) ➕ `leetcode/src/9.c` (+71 -0) ➕ `misc/Primes_in_range.c` (+54 -0) ➕ `misc/areAnagrams.c` (+56 -0) 📝 `misc/isArmstrong.c` (+46 -21) _...and 6 more files_ </details> ### 📄 Description BubbleSort algorithm for sorting integers in an array --- <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:15:16 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#787