forked from tornado-12/learn-to-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* sorting programs * Update README.md * Create bucket_sort * Create stable_sort * Create heapSort.go Co-authored-by: aaroosh agarwal <[email protected]>
- Loading branch information
1 parent
4d0a49c
commit c3de003
Showing
4 changed files
with
148 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// C++ program to sort an | ||
// array using bucket sort | ||
#include <algorithm> | ||
#include <iostream> | ||
#include <vector> | ||
using namespace std; | ||
|
||
// Function to sort arr[] of | ||
// size n using bucket sort | ||
void bucketSort(float arr[], int n) | ||
{ | ||
|
||
// 1) Create n empty buckets | ||
vector<float> b[n]; | ||
|
||
// 2) Put array elements | ||
// in different buckets | ||
for (int i = 0; i < n; i++) { | ||
int bi = n * arr[i]; // Index in bucket | ||
b[bi].push_back(arr[i]); | ||
} | ||
|
||
// 3) Sort individual buckets | ||
for (int i = 0; i < n; i++) | ||
sort(b[i].begin(), b[i].end()); | ||
|
||
// 4) Concatenate all buckets into arr[] | ||
int index = 0; | ||
for (int i = 0; i < n; i++) | ||
for (int j = 0; j < b[i].size(); j++) | ||
arr[index++] = b[i][j]; | ||
} | ||
|
||
/* Driver program to test above function */ | ||
int main() | ||
{ | ||
float arr[] | ||
= { 0.897, 0.565, 0.656, 0.1234, 0.665, 0.3434 }; | ||
int n = sizeof(arr) / sizeof(arr[0]); | ||
bucketSort(arr, n); | ||
|
||
cout << "Sorted array is \n"; | ||
for (int i = 0; i < n; i++) | ||
cout << arr[i] << " "; | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// C++ program to demonstrate default behaviour of stable sort() | ||
#include <bits/stdc++.h> | ||
using namespace std; | ||
|
||
int main() | ||
{ | ||
int arr[] = { 1, 5, 8, 9, 6, 7, 3, 4, 2, 0 }; | ||
int n = sizeof(arr) / sizeof(arr[0]); | ||
|
||
stable_sort(arr, arr + n); | ||
|
||
cout << "\nArray after sorting using " | ||
"default sort is : \n"; | ||
for (int i = 0; i < n; ++i) | ||
cout << arr[i] << " "; | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
package main | ||
|
||
import "fmt" | ||
|
||
type minheap struct { | ||
arr []int | ||
} | ||
|
||
func newMinHeap(arr []int) *minheap { | ||
minheap := &minheap{ | ||
arr: arr, | ||
} | ||
return minheap | ||
} | ||
|
||
func (m *minheap) leftchildIndex(index int) int { | ||
return 2*index + 1 | ||
} | ||
|
||
func (m *minheap) rightchildIndex(index int) int { | ||
return 2*index + 2 | ||
} | ||
|
||
func (m *minheap) swap(first, second int) { | ||
temp := m.arr[first] | ||
m.arr[first] = m.arr[second] | ||
m.arr[second] = temp | ||
} | ||
|
||
func (m *minheap) leaf(index int, size int) bool { | ||
if index >= (size/2) && index <= size { | ||
return true | ||
} | ||
return false | ||
} | ||
|
||
func (m *minheap) downHeapify(current int, size int) { | ||
if m.leaf(current, size) { | ||
return | ||
} | ||
smallest := current | ||
leftChildIndex := m.leftchildIndex(current) | ||
rightRightIndex := m.rightchildIndex(current) | ||
if leftChildIndex < size && m.arr[leftChildIndex] < m.arr[smallest] { | ||
smallest = leftChildIndex | ||
} | ||
if rightRightIndex < size && m.arr[rightRightIndex] < m.arr[smallest] { | ||
smallest = rightRightIndex | ||
} | ||
if smallest != current { | ||
m.swap(current, smallest) | ||
m.downHeapify(smallest, size) | ||
} | ||
return | ||
} | ||
|
||
func (m *minheap) buildMinHeap(size int) { | ||
for index := ((size / 2) - 1); index >= 0; index-- { | ||
m.downHeapify(index, size) | ||
} | ||
} | ||
|
||
func (m *minheap) sort(size int) { | ||
m.buildMinHeap(size) | ||
for i := size - 1; i > 0; i-- { | ||
// Move current root to end | ||
m.swap(0, i) | ||
m.downHeapify(0, i) | ||
} | ||
} | ||
|
||
func (m *minheap) print() { | ||
for _, val := range m.arr { | ||
fmt.Println(val) | ||
} | ||
} | ||
|
||
func main() { | ||
inputArray := []int{6, 5, 3, 7, 2, 8, -1} | ||
minHeap := newMinHeap(inputArray) | ||
minHeap.sort(len(inputArray)) | ||
minHeap.print() | ||
fmt.Scanln() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters