mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-04 05:44:35 +00:00
[PR #411] [CLOSED] sorting algorithm BubbleSort #787
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/TheAlgorithms/C/pull/411
Author: @soyo-kaze
Created: 10/15/2019
Status: ❌ Closed
Base:
master← Head:master📝 Commits (10+)
6f50f4aAdded a program that evaluates if two words are anagrams5236d89Create DoublyLinkedListInsertion.c82985e5Added primes_in_range.cc030fd1Update isArmstrong.c1e5afccupdated README.md80997b9updated CodingGuidelines.md89069e2updated CodingGuidelines.mdbbd54a9updated .gitignore4cd255dupdated shellSort.cac66bb4Update 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.