www.pudn.com > Asm_Bubbleup.rar > main.cpp


//************************** 
//Inline assembly using 
//bubble-up algorithm 
//************************** 
 
#include  
#include  
#include  
using namespace std; 
 
#define	array_size 30000 
 
void main() 
{ 
	//Generate array; 
	int a[array_size]; 
	srand (GetTickCount()); 
    for (int i=0; i