This repository has been archived on 2024-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
Schule/Sortieralgorithmen/InsertionSort.cpp

86 lines
2.2 KiB
C++
Raw Normal View History

2017-04-02 15:59:33 +02:00
#include<iostream>
#include<conio.h>
#include<string>
#include<sstream>
2017-04-09 12:43:54 +02:00
#include<cstdlib>
#include<ctime>
2017-04-02 15:59:33 +02:00
2017-04-09 14:00:28 +02:00
void InsertionSort(long double *ptr, unsigned short amount);
void InsertionSort(int *ptr, unsigned short amount);
2017-04-02 15:59:33 +02:00
int main()
{
std::string input;
2017-04-08 17:51:54 +02:00
unsigned short amount = 1;
2017-04-02 15:59:33 +02:00
std::cout << "Gib die Anzahl der Zahlen ein: ";
getline(std::cin, input);
std::stringstream(input) >> amount;
2017-04-09 12:43:54 +02:00
std::cout << "\nM\x94 \bchtest du mit zuf\x84lligen Zahlen arbeiten? y/n ";
getline(std::cin, input);
if(input == "y" || input == "Y")
{
2017-04-09 14:00:28 +02:00
int *array = new int[amount];
2017-04-09 12:43:54 +02:00
srand(time(0));
2017-04-09 14:00:28 +02:00
for(unsigned short idx = 0; idx < amount; idx++) array[idx] = rand()%100;
InsertionSort(array, amount);
delete[] array;
2017-04-09 12:43:54 +02:00
}
else
2017-04-02 15:59:33 +02:00
{
2017-04-09 14:00:28 +02:00
long double *array = new long double[amount];
2017-04-09 12:43:54 +02:00
for(unsigned short idx = 0; idx < amount; idx++)
{
std::cout << "Gib die " << idx+1 << ". Zahl ein: ";
getline(std::cin,input);
std::stringstream(input) >> array[idx];
}
2017-04-09 14:00:28 +02:00
InsertionSort(array, amount);
delete[] array;
2017-04-02 15:59:33 +02:00
}
2017-04-09 14:00:28 +02:00
getch();
return(0);
}
void InsertionSort(long double *ptr, unsigned short amount)
{
2017-04-02 15:59:33 +02:00
std::cout << "\n";
2017-04-09 14:00:28 +02:00
for(unsigned short idx = 0; idx<amount-1; idx++) std::cout << ptr[idx] <<", ";
std::cout << ptr[amount-1] << "\n"; //Ausgabe des unsortierten Arrays
2017-04-02 15:59:33 +02:00
for(unsigned short idx = 1; idx < amount; idx++)
{
2017-04-09 14:00:28 +02:00
int temp = ptr[idx];
2017-04-02 15:59:33 +02:00
int idx2 = idx - 1;
2017-04-09 14:00:28 +02:00
while(idx2>=0 && ptr[idx2]>temp) ptr[idx2+1] = ptr[idx2--];
ptr[idx2+1] = temp;
2017-04-02 15:59:33 +02:00
2017-04-09 14:00:28 +02:00
for(unsigned short idx =0; idx<amount-1; idx++) std::cout << ptr[idx] << ", ";
std::cout << ptr[amount-1] << "\n"; //Ausgabe des Arrays nach jedem Sortierungsschritt
2017-04-02 15:59:33 +02:00
}
2017-04-09 14:00:28 +02:00
}
void InsertionSort(int *ptr, unsigned short amount)
{
std::cout << "\n";
2017-04-02 15:59:33 +02:00
2017-04-09 14:00:28 +02:00
for(unsigned short idx = 0; idx<amount-1; idx++) std::cout << ptr[idx] <<", ";
std::cout << ptr[amount-1] << "\n"; //Ausgabe des unsortierten Arrays
for(unsigned short idx = 1; idx < amount; idx++)
{
int temp = ptr[idx];
int idx2 = idx - 1;
while(idx2>=0 && ptr[idx2]>temp) ptr[idx2+1] = ptr[idx2--];
ptr[idx2+1] = temp;
for(unsigned short idx =0; idx<amount-1; idx++) std::cout << ptr[idx] << ", ";
std::cout << ptr[amount-1] << "\n"; //Ausgabe des Arrays nach jedem Sortierungsschritt
}
2017-04-02 15:59:33 +02:00
}