Search results for 'Bubble Sort'. 1 post(s) found.
- 2007/09/08 Binary Search Sample Code
This is Binary Search that returns a negative one if the number is not found.
This code does a Bubble Sort and then proforms the Binary Search.
#include <iomanip.h>
#include <stdlib.h>
#include <time.h>
const c=10;
void inputa(int a[ ]);
void outputa(int a[ ]);
void dosort(int a[ ]);
void swap(int &x, int &y);
void search(int a[ ]);
int dosearch(int a[ ], int b);
int main()
{
int a[c];
time_t seconds;
time(&seconds);
srand((unsigned int) seconds);
inputa(a);
outputa(a);
cout<<endl;
dosort(a);
outputa(a);
search(a);
return 0;
}
void inputa(int a[ ])
{
int i;
for(i=0; i<c;i++)
{
a[i]=rand()%101;
}
}
void outputa(int a[ ])
{
int pig;
for(pig=0; pig<c;pig++)
{
cout<<a[pig]<<endl;
}
}
void dosort(int a[ ])
{
int j, pig;
for(pig=0;pig<c;pig++)
{
for(j=0;j<c;j++)
{
if (a[j]>a[pig])
{
swap(a[j],a[pig]);
}
}
}
}
void swap(int &a, int &b)
{
int temp;
temp=a;
a=b;
b=temp;
}
void search(int a[ ])
{
int b;
cout<<"Enter Number to Search for: ";
cin>>b;
dosearch(a,b);
cout<<"The number was found in line number "<<dosearch(a,b)<<endl;
}
int dosearch(int a[ ], int b)
{
int high=c;
int mid=c/2;
int low=-1;
int d=0;
int line=0;
do
{
if(b>a[mid])
{
low=mid+1;
mid=(high+low)/2;
}
else if (b<a[mid])
{
high=mid+1;
mid=(high+low)/2;
}
else if(a[mid]==b)
{
return mid+1;
}
}while(low<high);
return -1;
}
Another posts included in "C, C++"
| How to run shell command by MFC ? (0) | 2007/09/09 |
| How to search file on certain directory ? (0) | 2008/06/16 |
| How to call SetTimer function on MFC CDialog class ? (0) | 2008/07/30 |
| Double Linked List (0) | 2007/09/08 |
| MFC based World Wide Web HTTP Server Source Code (0) | 2007/08/28 |
| Creating and Using a CAsyncSocket Object to use CAsyncSocket (0) | 2007/08/28 |
| UDP Send and Receive Using CAsyncSocket (0) | 2007/08/28 |
| Using the shell to receive notification of removable media being insert... (0) | 2007/08/28 |
Trackback : Cannot send a trackbact to this post.
-
Subject Free rape videos.
2009/02/12 12:33
Rape porn. Sex rape. Free rape stories.
-
Subject Meridia coupon.
2009/02/13 08:34
Monument to the flag in meridia. Meridia meridia. Order meridia pill.
-
Subject Cialis best price buy online.
2009/03/07 08:37
Buy cialis phentermine. Cheapest cialis. Cialis.
-
Subject Viagra side effects.
2009/03/09 01:11
Viagra. Viagra canada. Viagra side effects. Generic viagra. Viagra for women. Free viagra. Free sample viagra.
-
Subject Medical fetish.
2009/03/13 17:55
Sneeze fetish. Panty fetish. Foot fetish. Foot fetish tgp.
-
Subject How do you snort percocet.
2009/03/17 11:58
Buy percocet online. Percocet withdrawal symptoms. Percocet aspirin. Generic percocet. Percocet.
-
Subject Valtrex side effects.
2009/04/03 18:44
Valtrex. Buy valtrex com. Valtrex information. Buy valtrex without prescription. Symptoms of valtrex overdose.
-
Subject Codeine.
2009/04/29 11:20
Cocaine and codeine. Buy codeine. Tylenol with codeine. Tylenol with codeine elixir dosing. What is apap codeine. Source of codeine. Buy fiorinal with codeine.
-
Subject Codeine.
2009/05/02 20:40
Codeine us pharmacy. Robitusin with codeine. Codeine. Codeine antitussive action. Side effects of codeine.
-
Subject Antidote soma valium.
2009/06/01 08:58
Valium side effects. Valium generic. Buy valium. Side effects of valium. Valium liquid form. Valium.
-
Subject different money making ideas
2010/01/29 04:09
moneyideas
-
Subject different money making ideas
2010/01/29 13:10
moneyideas
-
Subject different money making ideas
2010/01/31 16:38
moneyideas

Prev

Rss Feed