Check out and contribute to CodePedia, the wiki for developers.

Beginner C/C++

Moderators: Lundin
Number of threads: 4916
Number of posts: 15971

This Forum Only
Post New Thread

Report
bubble sort Posted by cmsc on 23 Nov 2009 at 3:11 AM
when I perform the bubble sort in my program, the first number I input changes to "1", why is that so? hmm.

Please help! Thanks!

here's my code for the bubble sort:
bubblesort(int index, int* a){

	int x;
	int y;
	int n = index + 1;
	int temp;
	
	
	view(index, a);
		for( x = 0; x < n; x++){
			for(y = 0; y < n - 1; y++){
					
					if(a[y] > a[y+1]){
						temp = a[y+1];
						a[y+1] = a[y];
						a[y] = temp;
					}
			}
		}
	view(index, a);
}




 
Popular resources and forums for programmers on Programmersheaven.com
Assembly, Basic, C, C#, C++, Delphi, Java, JavaScript, Pascal, Perl, PHP, Python, Ruby, Visual Basic
© Copyright 2009 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Publisher: Lars Hagelin. Read the latest words from the publisher here.
Be the first to sign up for Lars Hagelin’s In-depth Outsourcing Newsletter here.
bootstrapLabs Logo A BootstrapLabs project.