排序算法测试主程序


None.gif #include  < iostream >
None.gif#include 
< stdlib.h >
None.gif
None.gif
int  main()
ExpandedBlockStart.gifContractedBlock.gif
dot.gif {
InBlock.gif  
int i, N = 100;
InBlock.gif  
int *= new int[N];
InBlock.gif  
for(i=0; i<N; i++)
ExpandedSubBlockStart.gifContractedSubBlock.gif  
dot.gif{
InBlock.gif    a[i] 
= 1000 * (1.0 * rand()/RAND_MAX);
InBlock.gif    std::cout 
<< a[i] << " ";
ExpandedSubBlockEnd.gif  }

InBlock.gif
InBlock.gif  std::cout 
<< std::endl << std::endl;
InBlock.gif
InBlock.gif  Sort(a, 
0, N-1);
InBlock.gif
InBlock.gif  
for(i=0; i<N; i++)
InBlock.gif    std::cout 
<< a[i] << " ";
InBlock.gif
InBlock.gif  std::cout 
<< std::endl; 
InBlock.gif  std::cin 
>> i;
InBlock.gif
ExpandedBlockEnd.gif}

None.gif

另有VB.net版本演示程序:http://www.cnblogs.com/maweifeng/archive/2005/03/22/123594.html

转载于:https://www.cnblogs.com/maweifeng/archive/2005/03/22/123595.html

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐