Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Insertion sort #3

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions Insertion_Sort.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/* Sortowanie przez wstawianie polega na dzieleniu tablicy na podtablice posortowanych i nieposortowanych
elementów. Wybiera się jeden element odniesienia i iteruje po posortowanej liście na podstawie porównywania
wartości elementów. W najlepszym przypadku złożoność czasowa tego elgorytmu wynosi O(n)*/
#include <iostream>
void InsertionSort(int *arr, int arrSize){
int count=0;
//iteruje po wszystkich elementach tablicy
for(int i=0; i < arrSize; i++){

//określa element odniesienia
int refValue= arr[i]; //O(1)


int j;

//iteruje po posortowanych elementach w lewej cześci tablicy
for( j = i-1; j>=0; j--){
count++;
//jeśli element odniesienia jest mniejszy niż posortowane wartości, przesuwa je w prawo
//jeśli została znaleziona pozycja elementu odniesienia zewnętrzna pętla jest przerywana
if(arr[j] > refValue)
arr[j+1] = arr[j];
else
break;
}
//umieszczenie elementu odniesienia na właściwej pozycji
arr[j+1] = refValue;
}
std::cout << count << std::endl;
}
int main() {

//Inicjalizacja tablicy wejściowej
int arr[] = {1,2,3,4};

int arrSize = sizeof(arr)/sizeof(*arr);

std::cout << "Tablica wejściowa" << std::endl;
for(int i=0; i < arrSize; i++)
std::cout << arr[i] << " ";
std::cout << std::endl;

InsertionSort(arr, arrSize);

std::cout << "Tablica wyjściowa" << std::endl;
for(int i=0; i < arrSize; i++)
std::cout << arr[i] << " ";
std::cout << std::endl;

return 0;
}
1 change: 0 additions & 1 deletion MergeSort

This file was deleted.