久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

各種小函數(shù)——C/C++ 源碼 (轉(zhuǎn))

 WUCANADA 2013-04-13

各種小函數(shù)——C/C++源碼

分類: C/CPP?程序設(shè)計 74人閱讀 評論(0) 收藏 舉報
1,、strcpy:
char *strcpy(char *strDest, const char *strSrc)
{
    assert((strDest!=NULL) && (strSrc !=NULL));
    char *address = strDest;    
    while( (*strDest++ = * strSrc++) != '\0')
       NULL ;
    return address ;      
}


2、memset:

void * Memset(void* buffer, int c, int count)
{
    char* pvTo=(char*)buffer;
    assert(buffer != NULL);
    while(count-->0)
         *pvTo++=(char)c;
    return buffer;
}


3,、memcpy——不考慮數(shù)據(jù)區(qū)重疊
void * __cdecl memcpy ( void * dst, const void * src, size_t count )
 { 
void * ret = dst; 
while (count--)
 { 
    *(char *)dst = *(char *)src; 
    dst = (char *)dst + 1
    src = (char *)src + 1
} 
return(ret);
 }

4,、memmove——考慮數(shù)據(jù)區(qū)重疊
void *memmove(void *dest,const void *src,size_t count)
 { 
char *pDest=static_cast<char *>(dest); 
const char *pSrc=static_cast<const char *>(src); 
//注意,這里是關(guān)鍵,為什么要這樣比較呢?理由何在?
if( pDest>pSrc && pDest<pSrc+count ) 
{ 
for(size_t i=count-1; i<=0; ++i) 
pDest[i]=pSrc[i]; 
} 
else 
{
for(size_t i=0; i<count; ++i)
 {
pDest[i]=pSrc[i]; 
} 
return pDest;
 }


5、快速排序:

#include<iostream>

usingnamespace std;

 

int cmp = 0;    // 總共執(zhí)行比較操作的次數(shù)

int swp = 0;    // 總共執(zhí)行交換操作的次數(shù)

 

int partition(int a[], int p, int r)

{

    int x = a[r];

    int i = p-1;

    for(int j=p; j<=r-1; j++)

    {

        cmp++;

        if( a[j] < x )

        {

            i++;

            swp++;

            swap(a[i], a[j]);   // 小于x的放到前面,,不穩(wěn)定

        }

    }

    i++;

    swp++;

    swap(a[i], a[r]);

    return i;

}

 

void quickSort(int a[], int p, int r)

{

    if( p < r )

    {

        int q = partition(a, p, r);

        quickSort(a, p, q-1);

        quickSort(a, q+1, r);

    }

}

 

int main()

{

    int a[] = {4, 1, 3, 2, 16, 9, 10, 14, 8, 7};

 

    quickSort(a, 0, sizeof(a)/sizeof(a[0])-1);

 

    cout << "總共進行比較 " << cmp << " 次,,總共進行交換 " << swp << " 次" << endl;

 

    for(int i=0; i<sizeof(a)/sizeof(a[0]); i++)

    {

        cout << a[i] << " ";

    }

    cout << endl;

 

    return 0;

}


6、堆排序

#include<iostream>

#include<ctime>

usingnamespace std;

 

// 注意父子的計算方式,。節(jié)點編號從0開始,。

inlineint parent(constint x) { return ((x-1)/2); }

inlineint left(constint x) { return (2*x+1); }

inlineint right(constint x) { return (2*x+2); }

 

int cmp = 0;    // 總共執(zhí)行比較操作的次數(shù)

int swp = 0;    // 總共執(zhí)行交換操作的次數(shù)

 

// 調(diào)整以i為根的子樹,使之成為最大堆,,size為堆的大小

void maxHeapify(int a[], int size, int i)

{

    cmp +=2;

    swp++;

 

    int l = left(i);

    int r = right(i);

    int largest = i;    // 最大堆的根

   

    if( (l < size) && (a[l] > a[i]) )        largest = l;

    if( (r < size) && (a[r] > a[largest]) )  largest = r;

    if( largest != i )

    {

        swap(a[i], a[largest]);         // 三個節(jié)點中較大者成為根

        maxHeapify(a, size, largest);   // 可能破壞了堆性質(zhì),,重新調(diào)整

    }

}

 

void buildMaxHeap(int a[], int size)    // 建堆

{

    for(int i = (size-1)/2; i>=0; i--)

    {

        maxHeapify(a, size, i);

    }

}

 

void heapSort(int a[], int size)        // 堆排序,,(n-1)*O(lgn) = O(nlgn)

{

    swp++;

 

    buildMaxHeap(a, size);

    for(int i=size-1; i>0; i--)         // 重復(fù)n-1

    {

        swap(a[0], a[i]);

        size--;

        maxHeapify(a, size, 0);         // 每次調(diào)整,花費為O(lgn)

    }

}

 

int main()

{

    int a[] = {4, 1, 3, 2, 16, 9, 10, 14, 8, 7};

 

    heapSort(a, sizeof(a)/sizeof(a[0]));

 

    cout << "總共進行比較 " << cmp << " 次,,總共進行交換 " << swp << " 次" << endl;

 

    for(int i=0; i<sizeof(a)/sizeof(a[0]); i++)

    {

        cout << a[i] << " ";

    }

    cout << endl;

 

    return 0;

}

7.

整型數(shù)據(jù)求平均數(shù)方法    考慮到溢出的情況

  1. int averagePerfect(int a, int b)  
  2. {  
  3.     return (a&b) + ((a^b) >> 1);  

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點,。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,謹防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多