IMPLEMENTATION OF SELECTION SORT
PROGRAM:
#include
#include
int n;
void main()
{
int a[10],i,j;
void selection(int a[10]);
clrscr();
printf("\n\t\tSelection Sort");
printf("\nHow many Elements are there");
scanf("%d",&n);
printf("\nEnter the element");
for(i=0;i
selection(a);
getch();
}
void selection(int a[10])
{
int i,j,min,temp;
for(i=0;i<=n-2;i++)
{
min=i;
for(j=i+1;j<=n-1;j++)
{
if(a[j]min=j;
}
temp=a[i];
a[i]=a[min];
a[min]=temp;
}
printf("\n Sorted List is\n");
for(i=0;i
}
OUTPUT:
Selection Sort
How many Elements are there 5
Enter the element
5
4
3
2
1
Sorted List is
1
2
3
4
5
CIET college Programs,LAB Programs for Engineering Students,DAA LAB Programs,DSA LAB Programs,Remoboys,karthik,Remokn,Student3k,programs source code,Design Analysis And Algorithms LAB Programs,Data Structures and Algorithms LAB Programs,LAB Codings,Coimbatore Institute of Engineering and Technology ( CIET )
Wednesday, September 22, 2010
IMPLEMENTATION OF SELECTION SORT PROGRAMs
9:30 AM
Karthikh Venkat
Popular Posts( Last 7 Days )
-
Amazing Sky Wallpaper Super Sea Sky Wallpaper Super Orange Sky Wallpaper Super Mounten Sky Wallpaper Super Blue Sky Wallpaper ...
-
விஜய்- அதிர்ச்சி தரும் எஸ்.எம்.எஸ் ஜோக்ஸ். 1. இயக்குநர் ஷங்கர் - நான் இதுவரைக்கும் எடுத்த எல்லா படங்களும் சூப்பர் ஹிட்ஸ்,ஒரு படம் கூட இது வ...
-
Indian Premier League 2011 – Auction Chennai Super Kings No. of players bought : 18 (8 Indian, 10 foreign) Money spent : $8.6 mi...
-
RAM is an abbreviation for Random Access Memory. It usually refers to "temporary" memory, as when the system is shut down, the mem...
-
Hot Priyamani images,Sexy priyamani pictures,priyamani wallpapers. Hot Priyamani images, pictures, Priyamani sexy stills, priyamani gallery,...
-
KO Songs Download,Tamil Movie KO MP3 Free Download,Actor Jeeva’s KO Songs Direct Download Free,Jeeva KO Songs,Jeeva KO MP3 download,jeeva,...
