程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> C說話應用stdlib.h庫函數的二分查找和疾速排序的完成代碼

C說話應用stdlib.h庫函數的二分查找和疾速排序的完成代碼

編輯:關於C++

C說話應用stdlib.h庫函數的二分查找和疾速排序的完成代碼。本站提示廣大學習愛好者:(C說話應用stdlib.h庫函數的二分查找和疾速排序的完成代碼)文章只能為提供參考,不一定能成為您想要的結果。以下是C說話應用stdlib.h庫函數的二分查找和疾速排序的完成代碼正文


疾速排序:

#include <stdlib.h>
#include <stdio.h>
#include <string.h>

#define LENGTH(x) sizeof(x)/sizeof(x[0])

/**輸入數組元素
*\param arr:指向數組的指針
*\param len:數組元素的個數
*/
void print(char (*arr)[10],int len)
{
    int i;
    for (i=0;i<len;i++)
    {
        printf("%s ",arr[i]);
    }
    printf("\n");
}

int main()
{
    char arr[][10]={"bac","bca","abc","acb","cba","cab"}; /* 界說二維字符數組*/
    char *key="bca";/* 要查找的字符串*/
    char *ptr=NULL; /* 字符指針*/
 // 輸入未排序時字符數組的內容
    printf("before qsort :");
    print(arr,LENGTH(arr));
    /* 應用qsort對字符數組排序*/
    qsort((void *)arr,LENGTH(arr),sizeof(arr[0]),(int (*)(const void *,const void *))strcmp);
    /* 輸入排序後字符數組的內容*/
    printf("after qsort :");
    print(arr,LENGTH(arr));
    /* 采取二分查找查找指定字符*/
    ptr=(char *)bsearch(key,arr,LENGTH(arr),sizeof(arr[0]),(int (*)(const void *,const void *))strcmp);
    if(ptr)
    {
        /* 找到*/
        printf("%s is in the array\n",key);
    }
    else/* 沒找到*/
    {
        printf("%s isn't in the array\n",key);
    }
    return 0;
}

二分查找:

#include<stdlib.h>
#include<stdio.h>
#define ArrayLen(arr) (sizeof(arr) / sizeof(arr[0]))

int numarray[] = {123, 145, 512, 627, 800, 933};

int numeric (const int *p1, const int *p2)
{
    return(*p1 - *p2);
}
int* lookup(int key)
{//前往值是指向key的地址
    int *itemptr;
    // The cast of (int(*)(const void *,const void*)) is needed to avoid a type mismatch error at
 // compile time
    itemptr = (int *)bsearch(&key, numarray, ArrayLen(numarray), \
                             sizeof(int), (int(*)(const void *,const void *))numeric);
    return (itemptr);
}
int main(void)
{
 int *p = lookup(512);
 if(NULL != p)
  printf("找到的key是%d,", *p);

 printf("key的下標是%d\n", (p - numarray));

    return 0;
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved