[Show all top banners]

nepali8

More by nepali8
What people are reading
Subscribers
:: Subscribe
Back to: Kurakani General Refresh page to view new replies
 insertion sort
[VIEWED 1408 TIMES]
SAVE! for ease of future access.
Posted on 11-04-12 1:51 PM     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

hi to all!!!

I need some help please to figure it out to  count number of swaps  and comparison in this sort. any input will highly appriciated.


#include<iostream>
#include<iomanip>
#include<ctime>
#include<cstdlib>
 
using namespace std;
 
// function prototype
 
void Insertion_Sort(int arry[]);
 
int main()
 
{
 
// variable declarations
 
int arry[12];
 
srand (time(0)); // Seed the random number generator.
 
 
// place random numbers into the array
// Output the original array values
 
 
for( int i = 0; i < 12; i++ )
 
{
 
arry[i] =rand()%100;
cout << setw(4) << arry[i];
 
}
// creates a line seperator
 
cout <<"\n--------------------------------------------------------\n";
 
Insertion_Sort(arry);
 
 
// display sorted values
 
cout<<"The sorted array"<<endl;
 
// Output the current sorted array values
 
for ( int i = 0; i < 12; i++ )
 
{
 
cout << setw(4) <<arry[i];
 
}
 
cout<<endl;
 
return 0;
 
}
 
// end of main
 
//insertionSort Function
 
void Insertion_Sort(int arry[])
{
int b=0;
int a=0;
//iterate through entire list
 
for(int i = 1; i<12; i++)
{
a = arry[i];
b = i - 1;
while(b >=0 && arry[b]>a)
{
arry[b+1]=arry[b];
b = b - 1;
}
arry[b+1]=a;
}
}
 

 


Please Log in! to be able to reply! If you don't have a login, please register here.

YOU CAN ALSO



IN ORDER TO POST!




Within last 90 days
Recommended Popular Threads Controvertial Threads
TPS Re-registration
What are your first memories of when Nepal Television Began?
निगुरो थाहा छ ??
Basnet or Basnyat ??
TPS Re-registration case still pending ..
Sajha has turned into MAGATs nest
NRN card pros and cons?
Nas and The Bokas: Coming to a Night Club near you
Will MAGA really start shooting people?
मन भित्र को पत्रै पत्र!
Top 10 Anti-vaxxers Who Got Owned by COVID
काेराेना सङ्क्रमणबाट बच्न Immunity बढाउन के के खाने ?How to increase immunity against COVID - 19?
TPS Work Permit/How long your took?
Breathe in. Breathe out.
3 most corrupt politicians in the world
Guess how many vaccines a one year old baby is given
अमेरिकामा बस्ने प्राय जस्तो नेपालीहरु सबै मध्यम बर्गीय अथवा माथि (higher than middle class)
चितवनको होस्टलमा १३ वर्षीया शालिन पोखरेल झुण्डिएको अवस्था - बलात्कार पछि हत्याको शंका - होस्टेलहरु असुरक्षित
शीर्षक जे पनि हुन सक्छ।
Disinformation for profit - scammers cash in on conspiracy theories
Nas and The Bokas: Coming to a Night Club near you
NOTE: The opinions here represent the opinions of the individual posters, and not of Sajha.com. It is not possible for sajha.com to monitor all the postings, since sajha.com merely seeks to provide a cyber location for discussing ideas and concerns related to Nepal and the Nepalis. Please send an email to admin@sajha.com using a valid email address if you want any posting to be considered for deletion. Your request will be handled on a one to one basis. Sajha.com is a service please don't abuse it. - Thanks.

Sajha.com Privacy Policy

Like us in Facebook!

↑ Back to Top
free counters