QSort

qsort

  功 能: 使用快速排序例程进行排序
  用 法: void qsort(void *base, int nelem, int width, int (*fcmp)(const void *,const void *));
  各参数:1 待排序数组首地址 2 数组中待排序元素数量 3 各元素的占用空间大小 4 指向函数的指针,用于确定排序的顺序
  程序例:
  #include <iostream>
  using namespace std;
  #include <stdlib.h>
  #include <string.h>
  int compare( const void *a, const void *b);
  char * list[5]= {"cat","car","cab","cap","can"};
  int main()
  pascal 例程
  program quicksort;
  const
  max = 100000;
  max = 1000;
  type
  tlist = array[1..max] of longint;
  var
  data : tlist;
  i : longint;
  procedure qsort(var a : tlist);
  procedure sort(l,r: longint);
  var i,j,x,y: longint;
  begin
  i:=l; j:=r;
  x:=a[(l+r) div 2];
  repeat
  while a <x do inc(i);
  while x<a[j] do dec(j);
  if i<=j then
  begin
  y:=a;a:=a[j];a[j]:=y;
  inc(i);dec(x);
  end;
  until i>j;
  if l<j then sort(l,j);
  if i<r then sort(i,r);
  end;
  begin
  sort(1,max);
  end;
  begin
  write('Creating ',Max,' random numbers between 1 and 500000');
  randomize;
  for i:=1 to max do
  data:=random(500000);
  writeln;
  writeln('Sorting...');
  qsort(data);
  writeln;
  for i:=1 to max do
  begin
  write(data:7);
  if (i mod 10)=0 then
  writeln;
  end;
  end.
  c/c++
  c函数qsort()和bsearch()的用法
  使用qsort()排序 并 用 bsearch()搜索是一个比较常用的组合,使用方便快捷。
  qsort 的函数原型是void __cdecl qsort ( void *base, size_t num, size_t width, int (__cdecl *comp)(const void *, const void* ) )
  其中base是排序的一个集合数组,num是这个数组元素的个数,width是一个元素的大小,comp是一个比较函数。
  比如:对一个长为1000的数组进行排序时,int a[1000]; 那么base应为a,num应为 1000,width应为 sizeof(int),comp函数随自己的命名。
  qsort(a,1000,sizeof(int ),comp);
  其中comp函数应写为:
  int comp(const void *a,const void *b)
  {
  return *(int *)a-*(int *)b;
  }
  是对一个二维数组的进行排序:
  int a[1000][2]; 其中按照a[0]的大小进行一个整体的排序,其中a[1]必须和a[0]一起移动交换。
  qsort(a,1000,sizeof(int)*2,comp);
  int comp(const void *a,const void *b)
  {
  return ((int *)a)[0]-((int *)b)[0];
  }
  对字符串进行一个排序:
  char a[1000][20];
  qsort(a,1000,sizeof(char)*20,comp);
  int comp(const void *a,const void *b
  {
  return strcmp((char *)a,(char *)b);
  }
  对一个结构体进行排序:
  typedef struct str
  {
  char str1[11];
  char str2[11];
  }str,*stri;
  str strin[100001]=;
  int compare(const void *a,const void *b)
  {
  return strcmp( ((str*)a)->str2 , ((str*)b)->str2 );
  }
  qsort(strin,total,sizeof(str),compare);
  程序例:
  #include<iostream.h>
  #include<stdlib.h>
  #include<string.h>
  #define N 8
  int compare(const void *a,const void *b);
  void main()
  {
  char s[8][10]={"January","February","March","April","May","June","July","September"};
  int i;
  qsort(s,8,sizeof(char)*10,compare);
  for(i=0;i<N;i++)
  cout<<s<<endl;
  }
  int compare(const void *a,const void *b)
  {
  if(strlen((char *)a)!=strlen((char *)b))
  return strlen((char *)a)-strlen((char*)b);
  return (strcmp((char *)a,(char *)b));
  }//vc++ 6.0
  

   // VS2008编译通过,具有代表性的例子
  
#include <stdlib.h>
  #include <stdio.h>
  #include <string.h>

   int compare(const void *arg1,const void *arg2);
   int main(int argc,char **argv)
  {
  int i;
  argv++;
  argc--;
  qsort((void *)argv,(size_t)argc,sizeof(char *),compare);
  for(i=0;i<argc;++i)
  {
  printf("%s ",argv);
  printf("/n");
  }
  }

   int compare(const void *arg1,const void *arg2)
  {
  return _stricmp(*(char **)arg1,*(char **)arg2);
  }

  在运行输入cmd,在qsort.exe 参数1 参数2
  将会排序
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值