#include #include #include #include #include #include void InsertionSort(long double *ptr, unsigned short amount); void InsertionSort(int *ptr, unsigned short amount); int main() { std::string input; unsigned short amount = 1; std::cout << "Gib die Anzahl der Zahlen ein: "; getline(std::cin, input); std::stringstream(input) >> amount; std::cout << "\nM\x94 \bchtest du mit zuf\x84lligen Zahlen arbeiten? y/n "; getline(std::cin, input); if(input == "y" || input == "Y") { int *array = new int[amount]; srand(time(0)); for(unsigned short idx = 0; idx < amount; idx++) array[idx] = rand()%1000; InsertionSort(array, amount); delete[] array; } else { long double *array = new long double[amount]; 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]; } InsertionSort(array, amount); delete[] array; } getch(); return(0); } void InsertionSort(long double *ptr, unsigned short amount) { std::cout << "\n"; for(unsigned short idx = 0; idx=0 && ptr[idx2]>temp) ptr[idx2+1] = ptr[idx2--]; ptr[idx2+1] = temp; for(unsigned short idx =0; idx=0 && ptr[idx2]>temp) ptr[idx2+1] = ptr[idx2--]; ptr[idx2+1] = temp; for(unsigned short idx =0; idx