[PR #1093] [CLOSED] bubble sort #1653

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1093
Author: @Enhancer18
Created: 10/22/2022
Status: Closed

Base: masterHead: master


📝 Commits (4)

  • fc7bf72 bubble sort algorithm in iterative method
  • 8692ba0 Rename bubble_sort.c to bubble_sort3.c
  • 7c62327 Create insertionsort_iterative.c
  • 9ea8b7b Create binarysearch_recursion.c

📊 Changes

3 files changed (+140 additions, -0 deletions)

View changed files

searching/binarysearch_recursion.c (+45 -0)
sorting/bubble_sort3.c (+50 -0)
sorting/insertionsort_iterative.c (+45 -0)

📄 Description

simpler code in iterative approach.


🔄 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/1093 **Author:** [@Enhancer18](https://github.com/Enhancer18) **Created:** 10/22/2022 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (4) - [`fc7bf72`](https://github.com/TheAlgorithms/C/commit/fc7bf726121764bca14d454e666134ee402fff9b) bubble sort algorithm in iterative method - [`8692ba0`](https://github.com/TheAlgorithms/C/commit/8692ba077accbcca220911af9f269db5a9d13cd9) Rename bubble_sort.c to bubble_sort3.c - [`7c62327`](https://github.com/TheAlgorithms/C/commit/7c623277a0a985f418e9313d55bbb665fad8984a) Create insertionsort_iterative.c - [`9ea8b7b`](https://github.com/TheAlgorithms/C/commit/9ea8b7b5c8a6febd4d2b68fd8cb868a363d14545) Create binarysearch_recursion.c ### 📊 Changes **3 files changed** (+140 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `searching/binarysearch_recursion.c` (+45 -0) ➕ `sorting/bubble_sort3.c` (+50 -0) ➕ `sorting/insertionsort_iterative.c` (+45 -0) </details> ### 📄 Description simpler code in iterative approach. --- <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:23:11 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1653