0 like 0 dislike
3.4k views

Please using Templates to create the powerful function insert_sort using insertion sort algorithm that allow the main function below works perfectly: (function show_items(T *items, int size) also need to be created )

int main()
{
    float farr[] = {1.2,6.5,8.3,9.1,5.5,2.6,4.9,3.2,7.9};
    int iarr[] = {9,1,8,5,2,4,3,6,7};
    char carr[]= {'a','b','d','h','g','j','c','e','f'};
    string sarr[]= {"one","five","six","seven","eight","two","three","four","nine"};
    insert_sort(iarr,9);
    cout << "Sorted integer array: ";
    show_items(iarr,9);
    cout<<endl;
    insert_sort(farr,9);
    cout << "Sorted float array: ";
    show_items(farr,9);
    cout<<endl;
    insert_sort(carr,9);
    cout << "Sorted char array: ";
    show_items(carr,9);
    cout<<endl;
    insert_sort(sarr,9);
    cout << "Sorted string array: ";
    show_items(sarr,9);
}

Expected output:

Sorted integer array: 1 2 3 4 5 6 7 8 9
Sorted float array: 1.2 2.6 3.2 4.9 5.5 6.5 7.9 8.3 9.1
Sorted char array: a b c d e f g h j
Sorted string array: eight five four nine one seven six three two

Notice: You may have 100% output, but your code matters!

[Exercise] Coding (C++) - asked in C++
ID: 24896 - Available when: Unlimited - Due to: Unlimited

edited by | 3.4k views
0 0
Called for Help
0 0
Called for Help
0 0
Called for Help

27 Answers

0 like 0 dislike
Hidden content!
#include <iostream>

#include <stdio.h>

using namespace std;



template <class T>

void insert_sort(T a[],int b)

{
*** * * * * ** * ** * c;
*** * * * * ** ** * ** i,j;
* ** ** ***** ** ** * * ** * * * *******
****** ** ** * ***
*** * *** * * ** *** *** * * * ** * ** ** * * ***** **
***** ** * * *** * **** * ** * ** * ***
* * * *** * ** * ** * * * * * * * *** * * * * ** * * ** *
* * ** * * *** * * ****** * ** * * ** * ** ** **** * *****
* * * ** * **** **** * * * *** * * * * * ** ** ** **** ** ** * ** ***** * ***
* ******* * *** * * **** ** * ** * * ** * * ** ** ****** * *** * * * * ***** * *
* **** * * *** * ** *** * * ** * * * *** * ** * ** * **** ** * * *** * * * * * *
** ** ** **** **** * * ** **** ** *** * ** ** ** * * *
* ***** * ** * ** * * * * ** * ** * * *
** *** * ** ** * * * *

}



template <class T>

void show_items(T a[],int b)

{

   int i;
* **** * * * ***** * ** * * ** * **

   {
* ** * * ****** *** *** *** * **** ** ** *** * * ** *
****** *** * * * * *** * * *** *** ***
** ** ***** * ** * ** *** ** *** * * ** ** * * * ** * ";

   }



}

int main()

{
* * * * * ** **** * farr[] = {1.2,6.5,8.3,9.1,5.5,2.6,4.9,3.2,7.9};
* *** * ** * * * *** **** iarr[] = {9,1,8,5,2,4,3,6,7};
* **** *** ** ** *** ***** * * carr[]= * ** ** ** *** * * * * **
* ** * **** ** * * * ** * sarr[]= * ***** ** * ** ** ** * *** ** ** * ** ** * *** ** ** ** *** ***** * ** ** ** * **** ** * ** * * *** *** *** *
***** **** **** * ***** **
** * ***** * * << "Sorted integer array: ";
* ***** * ** *** ** ***** ** * *
**** ** ** * * * ** ** * **
*** * * * *** * ** ** *** ** *****
**** * *** **** * << "Sorted float array: ";
***** ** ** *** * ** *** **** ** *
* ****** ******* ** *** * * **
* ** ** * *** **** * **** * **** ***
* * * * * ** << "Sorted char array: ";
***** ** *** **** ** * *** * ** * **
****** * *** *** * * * **** * ** *
**** * * * * ** * * *** ** *
** * ******** **** ** * ** << "Sorted string array: ";
** * * * ** ** * **** ***** *

}
answered by (-324 points)
0 like 0 dislike
Hidden content!
#include ** * *** ** **

#include *** * ***

using namespace std;


**** ** **** * T>

void *** * *** * value1,T& value2)

{
** **** * * * * ** * temp;
** ** ** *** * **** * * * *
*** * * * * ** ******* *
**** ** * ** * *** ** *

}


** ** *** ** T>

int bubble(const T a[],int startindex,int used)

{
* * * ** * * ** ** * * * * ****
* * *** * * * ** * ** * *
** **** *** ** * **** * ** ***** *** * ** * **
* **** **** * * **** * * * *
** * * * * * ** * * * *** * * ** ** ** ** ***** ** *
***** * ** ***** * * * ** * * * * *** ** *** **
** * * *** ** **
**** * *** ** **** indexofmin;

}


* * * ** ** * T>

void show_items(T a[],int used)

{
** ** ** ** * ** ***** ** (int * * ** * * ***
* * * * ** *** * *
** * * * * * ** ** * **** *** ** ** ** ******** * ** *** *** ******* * * * * ";
** * ** ** ** * *** * *

}


* *** * T>

void insert_sort(T a[],int num)

{
** * ***** * * * * * * first;
* *** * * ** * ** * * * * ** * ** ** * *
* * * * * * ***
** * * ** * ** * **** * * * ********* *** = bubble(a,index,num);
* * *** ****** * *** **** ** ** ** * * * ** ** *** * * * ** *
*** * **** * * **** * ***



}*/
* * * *** * T>

void insert_sort(T arr[], int len) {
*** ******** ** *** * * ** i, j;
** *** * ** *** temp;
*** * * * *** *** * (i = 1; i < len; i++) {
* * * ** ** * ** **** * *** ***** **** * ** ** = arr[i];
** * * * * ** *** * **** ** * * ***** *** = i - 1;
* **** * * ** * * * * * * * ** ** *** * ** * (; j >= 0 && arr[j] > temp; j--)
***** * ** ** * * ***** * * *** * *** ***** ** * * ***** + 1] = arr[j];
* * ***** * * * * * * ** ** ** ** * * + 1] = temp;
****** ** * *** ** ** * * * ** * * * * * ***

}



int main()

{
* * * **** **** ** * farr[] = **** * * ***** **
** *** * ** *** ** * ** iarr[] = * * * *** *
** * ** ****** *** *** carr[]= ** * ** * * * *
**** ** * * * * ** ** **** ** * sarr[]= * ** * **** *** *** *** * * * * ** * ** * * * * ** * * * *********** ** *** * ***** * ****** *
** ** ** * *** * *** *** * * *
* * ** * *** *** ** << "Sorted integer array: ";
* * * * * ** ** * * * ** *
* ** * ** ** *** **** * **** *
* * *** ***** * * **** **
* ***** ** ** * * * << "Sorted float array: ";
* ** ******** * * *** * * **** * *
** ***** ** ** ** * * ** *** ****
* ** * * ******** ** * ** * ** ** **
* **** * *** **** *** * << "Sorted char array: ";
** * ** * ** ** * *** * * **
* * ** ***** *** * * ** * ********
* ****** *** * * * *
*** *** *** * * * * *** *** << "Sorted string array: ";
** ** * * ** * ***** * *

}
answered by (-412 points)
0 like 0 dislike
Hidden content!
#include <iostream>

#include <stdio.h>

using namespace std;



template <class T>

void insert_sort(T a[],int b)

{
* ****** * * *** ** * c;
** ** * ** i,j;
*** ** * *** ** * ** * * * ** *
* * * *** * * ** **
* ** * **** * * * * * ** *** * * * * * ** **
**** * * *** * *** ***** *** ** * *** * ** * **
*** * ** * *** *** * ** ** ** * ** * ***** * * * ** *** ** ** *** * ****
**** ** ** * * * *** * ** ** ** *** **** * *** * * * *** * **
** * ** *** * ** ** ***** * * ** *** *** * ***** * * * *** *** *** * * *** * *
** *** * * * * * ** * * *** * ** ** *** * ** * * * ** **** * * * ******** **** * * * * * ** *
*** * ** * * ** ******* *** * * *** * *** * * * ** * * * ** * *** ** ** **** * ** * ******
** *** ** * * *** * ***** * ** * * ******** * ** ****** * * ** ** **** ***
* * * * ***** ** ** **** ** * *** *** ***
* * * ** *

}



template <class T>

void show_items(T a[],int b)

{

   int i;
* ** * * *** ** *** *** * * * ***

   {
*** * * ** **** ** * ****** *** * * ** **** * * * * * ***** * *** ";

   }



}

int main()

{
*** * * * ** **** * * farr[] = ** ** **** **
* * * * ** * * * **** iarr[] = {9,1,8,5,2,4,3,6,7};
* * * ** ** ** * * carr[]= *** **** ** * * * * **
* ** * * ** * ****** * ** sarr[]= * * *** * ** * ** ** ** *** ** ****** * ***** ** *** ** * ** **** * ** * *** * * ** ** * ** ** * * * ***** *** * * * * * * * *
* ** *** * ** * * * **** * ***** *
**** * *** * * ** *** * << "Sorted integer array: ";
** * ** ** **** * * ** * * **
**** * **** * *** ** * **** ** *
* ** * ** * **** * *** *
* * *** * ******** ** *** << "Sorted float array: ";
**** * * ** *** * ** ** * ** ***
* * ***** * * * * * *** **** * *** *
*** ** **** *** * **** ***
* ** *** ** **** << "Sorted char array: ";
** * * ***** ** * ** * * ****
* * ***** * * * ** * ** ** * ** *
** ** * * * * * ** *** *
** * * * *** *** * << "Sorted string array: ";
* * * * * * * * *** ** *

}
answered by (-324 points)
0 like 0 dislike
Hidden content!
#include * * * * * * *

#include ***** ** ** *

using namespace std;


**** * ****** T>

void swapvalue(T& value1,T& value2)

{
** * **** ** **** * ** temp;
* *** *** ** ** * * ** **
* *** ** *** * * * ***
**** * * * * * ** * * ***** *

}


** *** * T>

int bubble(const T a[],int startindex,int used)

{
* * **** ** *** * *** * small=a[startindex];
* **** *** ** * * * ** * * *
* ** * *** * * ** * ** * * * * * ** ****** ******
***** * * ** *** *
*** ** **** ** ** * * * *** * ** ****** * * * *
***** * * **** ** *** ** * ***** * ** * ** * *** ***
* * * * ** *** *
* * **** *** * * ** ** ** indexofmin;

}


**** * * * T>

void show_items(T a[],int used)

{
** ** ** ** * * (int * *** * ** *
**** ** * * ** * * *
** * ** ***** ** * * * * *** * * ** * * * ** ** * * * * *** **** ";
* * ** ******* * * *** *

}


* ***** ** T>

void insert_sort(T a[],int num)

{
* * ** * * * ****** first;
* * * ** * * *** * * ** * * * ** * * ** ** *
*** * * ** * *
***** * ** * * *** ****** * **** * * ********* = * * * **
* * ** *** *** * * * * * ***** * ** * ***** * ****** *** **** * * **
* ****** * * * * *



}



int main()

{
*** *** * ** *** ** * ** farr[] = **** * ** *** * * *
* * * * **** * ** * *** iarr[] = {9,1,8,5,2,4,3,6,7};
** * **** ** *** **** ** carr[]= * ** ** ** *** ** *
* ***** * ** **** * sarr[]= **** *** *** * * *** *** * *** * * * * * * *** * * * ** ** * * **** *** * ******* ** * * **** *** *** ** * *** **** *
** ** * ****** * * * ** * ** **** *
* * **** * ** * *** ** << "Sorted integer array: ";
* * *** ***** * * **** * **** *
* ** ******* * * * ** *
*** ** ** * ** ** ***** * * * **
* * * * * * * *** ** << "Sorted float array: ";
* **** * **** *** ** *****
* * * * ** ***** ** * * ***
* * *** **** * * ** * * * *
* ** **** * ** ** ** ** * ** << "Sorted char array: ";
* * * *** * * * * ** *** *
**** ** ** * * ***** *****
**** * * * *********** * **
* * * ** * * ***** << "Sorted string array: ";
* ** * ** ** *** * * * ******

}
answered by (-412 points)
0 like 0 dislike
Hidden content!
#include **** *** *

#include <string.h>

using namespace std;



template <class T>

void show_items(T input[], int max_val){
* * * *** * ******* * i;
*** * ** ****** * ** * *** i<max_val; i++){
********* * * *** * ** **** * * ** * ****** << input[i];
* * ** * * ** * ** * * **** ****** *** ** * * cout << " ";
** ** * * *** * * *
* ** * ** * * ***** ** << endl;

}



template <class K>

void inserti_sort(K input[], int max_val){
* * ** *** * * * * * i, j;
** ** * * **** * mod;
* * ** ****** * * * i<max_val; i++){
** * * * * ** ******** * **** ** *** * ** *** * j<(max_val-1); j++){
** ** * * * * * * * ** ** * *** * * *** * * ** * * ** ******** ** * * *** **
***** * ***** ** *** * * *** * ** * *** * ** *** ** * **** * **** * * *** * **** ** = input[j];
* * * *** * ** ** * * * ** *** * ** * * * * * * ** * * * * ***** * * * ** * ** * * * * ** = input[j+1];
* * ** * **** * ****** * *** ** ** * * ** * * **** * * * ** * *** ** * ** = mod;
* * * * *** ** ** * *** *** * * * ** * *** *** * *** * *
* ** * * ** *** ** * *** * ** ** *
* ** ** * * * * ** ***

}


*** * * * ** T>

void insert_sort(T arr[], int len) {
* * * * * *** **** i, j;
*** ***** * ** * temp;
* *** * *** *** * ** *** * * (i = 1; i < len; i++) {
* * * *** * ***** * * * * * *** ** = arr[i];
* ** ** * * * ** * ** ** *** **** * ** * *** * = i - 1;
* * * * *** ** ** * * ** * *** * * ** * (; j >= 0 && arr[j] > temp; j--)
* ******* * * * ******* * *** ** ****** *** * * * * *** * * ** * * *** + 1] = arr[j];
** ** * * *** * ** * **** ** ***** *** ** * + 1] = temp;
* *** * *** *** *

}



int main()

{
* * * *** * * ** * * * farr[] = * * ** *** ***** ** *****
* * **** ** * iarr[] = {9,1,8,5,2,4,3,6,7};
** ** * * * * * ** carr[]= * *** *********
* ** * * ****** **** * sarr[]= *** * ** * * * * * * ** *** ** * * * *** * * ** *** *** ******* ** * ** ** *** ** ** * * * * ** * ** * * * * ** *** *** *** *** * **
* *** * * ** *** *** * *** * * * ****
*** **** ***** * *** << "Sorted integer array: ";
*** * * *** *** ** ***** * * * * *
*** * * **** * *** **** ***
* * * **** ** * *** *****
** *** * ** ** * << "Sorted float array: ";
* * ** * *** ** ** * ** *
* * *** * ***** *** ***** * * * *
*** *** * ** ** **** * * ** *
* * **** ********* * * << "Sorted char array: ";
***** * ** *** ** * * * * *** ** *
* * * * ** ** ***** ** * * * ** *
* *** *** ** * * **** *** *
* * ** * ** * * << "Sorted string array: ";
*** **** * ***** * ***** *** **

}



/*

string N[] = ***** ** * ******* * **** ****** * * * * * ** * ****** * * "six", **** * * * ** * * * **** ** * ** * * *
***** ** ** ** ** ** **** * i<max_val; i++){
* ** ** ****** * ** ** * **** ** * * ** * * * j<9; j++){
*** *** * * *** ** ** ** * * **** * * * ****** ** * * * * * *** * N[j]){
**** *** * * * ** * ** * ** **** * * * * * *** ** ** ** * **** * * ***** * * * * ** * ***
* * * ** ** *** * ** * * ** * * ** * * * * * ** * ** ** *** * ** * **** ***
* ** * **** ***** * ****** * *** * ***** *** ** ** *
** * ** **** ** **** * ** ** * * ** ** **
** * * * * * ** ** *

*/
answered by (-581 points)
0 like 0 dislike
Hidden content!
#include <iostream>

#include * *** ****

using namespace std;



template <class T>

void show_items(T input[], int max_val){
* ** * * * * ** i;
* * *** * *** ***** * i<max_val; i++)
* ** *** ** * * * * ** * * ** * << input[i] << " ";
*** *** * * *** ** * ** * ** << endl;

}



template <class K>

void inserti_sort(K input[], int max_val){
* ** * * * *** * *** i, j;
* ** * *** * ** ** * * mod;
*** * ** ** * * i<max_val; i++){
* **** * *** * ** ** ** * * * * ** **** * ** j<(max_val-1); j++){
** *** * * ** ** * * *** ** * *** *** ** ** ****** * ** * * * * **** *** * **** **
****** * * * * * *********** * * ** * * * *** * * *** ** * *** * ******** *** * * = input[j];
**** * * * * **** ** * * * * ** * * *** * * * * * * * * *** *** ** * * * *** * * ** * * = input[j+1];
* * * * * *** *** ** *** * *** * *** ** * * * * ** ** * ** ** * * *** *** ** *** = mod;
*** *** * *** *** * ***** * * **** * ** * * ** * * ** ** ** * *
* ********** * ** ** *** * *** ** *
** **** * * * *

}


** ** ***** **** T>

void insert_sort(T arr[], int len) {
* ** * * * * * * ** * i, j;
** * * * * * * **** * temp;
* * ***** ** * ** (i = 1; i < len; i++) {
* * ***** ** * ** * * * * ** ** ** = arr[i];
* * * *** ** * * *** ** * *** ** * * * ** ** = i - 1;
*** **** * * *** ** ** ** ** * * * * * * (; j >= 0 && arr[j] > temp; j--)
** * ** *** * ** ***** *** * ** ***** * ***** * *** + 1] = arr[j];
*** ** ** * ** * ** *** *** * * *** * ** + 1] = temp;
***** ****** * ** * * **

}



int main()

{
* ** * ** * * * ** * farr[] = *** *** *** ** ** ****
* * ** ** *** iarr[] = {9,1,8,5,2,4,3,6,7};
** ** ** ** ** * carr[]= ** * * ** * * *
* *** *** ******* *** * sarr[]= ***** * * ** ** * ***** ** **** ***** * ** **** ** ** ** * *** * * ** *** * * * * **** * * * * *** ******** ** ** * *
* * * *** *** ** * * * * * * *
**** **** * * * ** * << "Sorted integer array: ";
*** * * ** ******* ** **** * *
* ** * *** * ** * *** * *** *
*** * ** * * * ****
* ***** * * ** * ** << "Sorted float array: ";
** * *** **** ** * * * ** ** * *
** ** ** ****** * ***** * **
* *** ** * ** *** ** * ***** * ** *
* ** * *** ** * * << "Sorted char array: ";
***** *** ** * * * *
* **** *** ** *** *** *** * * *
*** * ** * *** ** * * ** ** * *
* * *** **** ** * * * * << "Sorted string array: ";
* *** **** ** ** * ***** *** *

}



/*

string N[] = ** * * * ** * * ****** *** ** *** * * * * **** * * * * * * **** ** * ***** * * * * ** * * ***** ** ***
* ** ** *** ** * ** i<max_val; i++){
* ** **** ** *** * * * ** * ** *** * **** * j<9; j++){
* * ** * * ** ***** * ** ** * ** ** ** * * *** * ** * * ** * * **** *** **** N[j]){
* * * ** * *** ***** ** * * **** **** ** * ** * *** ***** ** ** ** * * * * ** ***
* * ** * * * ** * *** **** * * ** *** ** **** * ******* * * *** * *** *** * * * ***
* * *** * *** **** **** **** * * ** ** **** ** * *** ***** *** *** * *
*** * * * * ** *** **** * ** * * * ***** ****
*** ** *** * **

*/
answered by (-581 points)
0 like 0 dislike
Hidden content!
#include <iostream>

#include * * ** *

using namespace std;



template <class T>

void show_items(T input[], int max_val){
******** * *** * *** i;
*** * * * **** * ** *** *** i<max_val; i++)
** ** * * * ** * ** * ** **** * *** * ** ** * << input[i] << " ";
* ** * * * * ** << endl;

}



template <class K>

void insert_sort(K input[], int max_val){
***** *** * ****** *** i, j;
*** * * * * ** * * *** ** mod;
* *** *** ** *** ***** ** i<max_val; i++){
****** * * ** * ** * **** * * **** ** *** *** * j<(max_val-1); j++){
*** ** * * * ** ** * ** ** ** * ** * ** ***** * * **** ** **** ** * ** *
* * * * * ** ** ** * *** * **** **** * ** ** *** * * ***** ** *** * * **** * * ** * * * = input[j];
* * * * * * *** * * * ** *** * *** ** **** ** ** ** * ******* * ** *** * ***** * ** * = input[j+1];
* ** * *** * * * ******** * ** * * *** * ** * * * **** ** ** ***** * **** * ***** ** * ** = mod;
*** * ** *** * * ** ** ***** ** * *** ** ** ** ** * **** **** *** * * * ** *
*** **** * ** *** **** ** ****** ** **** *
* * *** * * ** *

}


* * * * ***** T>

void inserti_sort(T arr[], int len) {
** * * * * * * ** * i, j;
* * ** ** * ***** ** temp;
* *** *** ** ** ******** (i = 1; i < len; i++) {
* *** * *** ** * * ** **** ** * * * ***** = arr[i];
**** ** *** *** * * * *** ** ***** ** = i - 1;
* ** *** * ** * *** * *** * * ** * ** * ** (; j >= 0 && arr[j] > temp; j--)
* * ***** * * *** ** * * * * *** *** * * * *** *** **** * * *** *** * + 1] = arr[j];
**** * * *** *** ***** ** ** * * ** *** * * ** * *** + 1] = temp;
* **** * * *** **

}



int main()

{
* * * * * ** * ** * * farr[] = *** * ** * ** ****
**** * ** * * *** * iarr[] = {9,1,8,5,2,4,3,6,7};
** ***** ***** ** * * ** ** carr[]= **** ** * ** * *****
** ***** ****** * sarr[]= * *** ** "two", * * * **** ** ** ** **** ********** * * * * ** * "six", * * * **** ** * * *** ** *** * * *** * ** ** * * * ** * * * * * * ** ** * * ** *** ** ***** ** ** ****** ** ** ** ***** * * * *** * ** * ** ** *** * ***** ** *
* ** * **** **** * * ** *** * **** *
***** * * ** * **** * << "Sorted integer array: ";
* * * * ** **** * * ** *** *
* ** *** * * * *** * ***
* *** ** * * ** *** * *
* *** * * * ** * ** *** * << "Sorted float array: ";
* *** ** **** * *** * ** *
* ** * ** **** ** * ** ****** **
** ****** *** * * ** * **
* ** * * * ** ** << "Sorted char array: ";
*** ** * * *** * * ** *** *
* *** *** ** * ** ** ** ** * ******
* ** * ** *** ** ****** ** *** ****
* *** ***** * * * ** << "Sorted string array: ";
** * * * ** * ** * ** ** * ******* *

}



/*

string N[] = * * * *** *** * * ** * ** ***** * * * ** * **** * ** * ****** * * * * ******* * ** ** *** * * ** *** * * * * ** *** *
******* * ** ** * *** * * * i<max_val; i++){
* ** *** *** * * ** * * *** * ** **** * **** ** j<9; j++){
*** * * *** * * ** ** * **** *** ** ** * * * ** * ** ** *** ** N[j]){
* * ******** *** * *** * *** * * ** * * ** * *** * ***** *** * * * * * ** *****
* ** * ** ** *** ** * * * ******** * ** ** * * * * * ** *** * *** * * * ** ** *** * **** *
* ** * **** * * * * * ** ** *** *** * ** ** ***** ** ** *** * * **
**** **** *** * ** * * ***** * ***** * ****
* **** **** * *****

*/
answered by (-581 points)
0 like 0 dislike
Hidden content!
#include <iostream>

#include * ** * *** *

using namespace std;



template <class T>

void show_items(T input[], int max_val){
* *** * ***** ****** ***** i;
*** * *** *** * * **** ** i<max_val; i++)
***** ** * * * *** ** * * *** *** ** ** * * << input[i] << " ";
* *** *** ** *** * * << endl;

}



template <class K>

void insert_sort(K input[], int max_val){
**** ** ***** ** * * ** i, j;
* * * * * ** * * * ** mod;
*** * ** * *** * **** * ** * i<max_val; i++){
* * **** **** ** * * ** * *** * ** ** * **** * j<(max_val-1); j++){
**** *** ******* *** * * ** * * * * * ** ** * *** *** * ** ** * * ***** *****
* * * * ****** *** ** * * * * ** ** ******* * ** * * * ** ** ** ** * ** * * * ** *** * = input[j];
* * * *** ** **** ** * * ***** * * * * ** *** * ** ** * *** * ** * ** ** *** * = input[j+1];
* * * ** ** ****** * * ****** * ** * *** * ** * * **** ** *** * * ** * **** * ** * * **** * ** ** * = mod;
** * * ** * * * ** * * * ** * **** * * ** ** ** ** * * *
* ** ** ** ***** * * ** **** ** * * * ****
* * * * * * * * **

}


** ********* * T>

void inserti_sort(T arr[], int len) {
** * *** * **** * * * i, j;
* *** ** * ** * * ** * * temp;
* * * * * * ** ** ***** (i = 1; i < len; i++) {
* * * * ** * ** *** ** * ** * ** = arr[i];
**** * ** ** ** * ** * ** * *** * * ** = i - 1;
* *** * **** ** * * **** * **** ** **** *** *** (; j >= 0 && arr[j] > temp; j--)
* * * ** ***** ** *** * ** ** ** ** ** * ******* * * ** * ** * * + 1] = arr[j];
* *** **** ***** ** ***** * ** ** *** ** ** + 1] = temp;
** *** *** * ** * *** **

}



int main()

{
* *** * * ** * * * ** ** * ** farr[] = * **** * ** * *** *
* ** **** * *** ** ** iarr[] = {9,1,8,5,2,4,3,6,7};
*** ** * * *** ** * carr[]= *** * ***** * ** ***
* * ** *** ** *** * * * sarr[]= **** *** **** * * * "two", * ** *** * ** ** * * ** * ****** "six", ***** * *** *** *** * * * *** *** * *** * * * * * ** * * * ***** ** ******** ** * ** **** **** * *** ** * *** *** * * ******** ** * * * * * * * ** * ** * *
* * * * ***** * * * * * *
* * * * * ** * ** ** * * << "Sorted integer array: ";
* * ***** *** ** ** ****** ** * *
*** * * * *** * * * * * * * * ***
**** * ** ***** * * *
**** * * **** ** *** ** * * << "Sorted float array: ";
** ** ** ** * **** ** * **
** * ** * * ** ***** * * * * * ** * **
* *** ** ** * * * * *** *
**** * ** * ** ** * * ** * << "Sorted char array: ";
* ** ** ** ** * ** ** ** * *
* * ** *** ** * * * * * * * *
*** * * *** ** ** ** * * ** * ***
** * * * *** * ** << "Sorted string array: ";
* ***** * ** * * ** ** * ***

}



/*

string N[] = * * * * * * * * * * * **** * * *** * * * * ***** ***** *** ** * ** ** * * ** ** ***** **** * * * * * ***
**** * * * * *** * * * i<max_val; i++){
* ** * * * ****** *** ** *** ** * * j<9; j++){
** * * * *** * * ** * * ** ***** ***** * ***** ** *** * * ** * **** ** ** N[j]){
* ** * * * * *** **** ********* * ** * **** * ** * * * *** ** * * *** ** ** * **** * * **** *
* * * * * * * * * * * * *** ** *** * **** ** * * * * * ** * * * ** ** * *******
** * * * ** * * ** *** * * * *** ** * ** *** ** * * ****
* ** ** * * * * * ***** ** * * * ***
* ****** * * * * ** *

*/
answered by (-581 points)
0 like 0 dislike
Hidden content!
#include <iostream>

using namespace std;



template <class T>

void insert_sort(int &x,int n)

{
*** * ***** *** * * * i,j;
** * * ***** *** temp;
* **** * ** ** ** * * *** ** * *
** ** ******
* ** ** *** ** * ** * * *** **** ** * *** * **
* *** * ** ** ***** *** * * ** ** * * *
* *** * * ** * * ** * **** ***** * * ** * * **** *** && i>=0)
** *** * * *** *** *** ** * ** **** *
* **** * * * * ** ** ** ** * ** * ** **** *** * * *** ****
*** * * * * **** * * * **** ** * * * ** * * ** * * * ** * ***
* * * **** ** ** ** * * *** ** * * * ** *
** ** ***** * *** *** * * * * *** * **** *** ** * * * **
***** * ** * ** ****** *



}



void show_items(int &x,int n)

{
* * * * *** * ** ** * * i;
* *** ********* ** * * * *** ** ** *
** ** * * * * * ** * ****
* * * * ** ***** *** **** * ** * *** * ** * * ** ** "<<x[i];
* * * ******* **** *** *

}

int main()

{
**** * * **** * ** * **** * * farr[] = {1.2,6.5,8.3,9.1,5.5,2.6,4.9,3.2,7.9};
*** * * ** ** *** iarr[] = {9,1,8,5,2,4,3,6,7};
****** ** ** * * * **** carr[]= * * * * ** * *** *
* ****** ** ** ** ***** sarr[]= ***** * ** * ** * ***** **** ** * ** * **** *** ** * **** * *** *** * * * *** * **** * ** * *** * ** *** * * * ** **
* * *** ** ** * * * *** ** ** *
*** **** * ** * * * *** ** << "Sorted integer array: ";
* * * ** * * * ** * * * ***
****** * * * ** ** * *** **** *** *
* * ********** * ***** * ** **** *
** *** ** * * ** ** * * << "Sorted float array: ";
******* ** ** **** *** ** ** ** * *
*** ** ** ***** * * * ** ***
* ***** * ** ****** ** * * ****
*** * ** * **** << "Sorted char array: ";
** **** ** * ** * ** *** ** *
**** * * ** * * ** * *******
*** ** * * ** * * ** * ** **
* * *** * ** * * * * << "Sorted string array: ";
* ** *** * * * * ** *** * ****

}
answered by (0 points)
0 like 0 dislike
Hidden content!
#include <iostream>

using namespace std;



template <class T>

void insert_sort(int &x,int n)

{
* ** ** ** * * * i,j;
* * **** * *** *** temp;
**** ***** ** * * ** *
* *** *** ** ** ** * **
***** * * *** * * * **** * * ****** *** ** * **
*** *** * * * * **** * * * ** * * ****
** ** * * ***** *** * ***** * * * * **** * **** * ** ** *** && i>=0)
** *** * * * * ****** **** ** ** * ***
***** * *** ** ** ** * ** **** ** ****** ** * * * **** * ** * *
*** * *** ** * **** ** * * * * * ** * **** * * ** * ** * *
* * *** * * * ** ** **** ** *** * ** *** ** *
********* * * * * ** * ***** * ** *** * ** ** ****
*** * * * * ** * * *



}



void show_items(int &x,int n)

{
* ** ** ** *** * * * * * i;
*** * **** * * ** ** ****** * ***
*** ** **** ***** * * **
* ** * * * * ** ** * * ** ** ** *** *** * "<<x[i];
** * *** * *** *

}

int main()

{
* * * * *** **** ** * * farr[] = {1.2,6.5,8.3,9.1,5.5,2.6,4.9,3.2,7.9};
* * *** * * ** ** iarr[] = {9,1,8,5,2,4,3,6,7};
******** ***** * carr[]= * **** * ** *** **
* * * ** ** ** ** **** sarr[]= * * * * * ***** ** * * * **** * * * *** ** ** * * ** ** * * * ** * ** ** * * * * * ** * ** * * * * * * * ***
**** * * ** *** ** ** **** **
****** ** ***** **** << "Sorted integer array: ";
* * ** ***** ** ** * * *** * * **
* * ** ** ********* * * *
* * * * * * * * ** * * * * *
** ****** **** * * ** * << "Sorted float array: ";
*** *** * * * **** *** ***
** **** * *** * *** * * ******
*** * **** **** * *** * ** * * *** ** **
* *** ** ** * * *** << "Sorted char array: ";
** ** * ** * * *** *** ****
* ***** * *** **** * * * * * ****
**** *** * ** * ** ** * * * ***
** * ** *** * * * << "Sorted string array: ";
*** *** *** * ** * *** * * *

}
answered by (0 points)
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English 中文 Tiếng Việt
IP:172.70.131.141
©2016-2025

Related questions

0 like 0 dislike
15 answers
[Exercise] Coding (C) - asked Jun 1, 2017 in C++
ID: 24854 - Available when: Unlimited - Due to: Unlimited
| 2.1k views
0 like 0 dislike
22 answers
[Exercise] Coding (C) - asked Jun 8, 2017 in C++
ID: 24895 - Available when: Unlimited - Due to: Unlimited
| 2.4k views
0 like 0 dislike
17 answers
[Exercise] Coding (C) - asked Jun 1, 2017 in C++
ID: 24855 - Available when: Unlimited - Due to: Unlimited
| 2.1k views
12,783 questions
183,442 answers
172,219 comments
4,824 users