Contents

Views 6974 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
Merge Sort..
-------------------------------------------------------------------
#include<stdio.h>
#include<malloc.h>
#include<string.h>

void mergesort(char a[], int l, int r){
        int i, j, k, m;
        char *b;
        b = (char *)malloc(r+1);
        if(r>l){
                m = (r+l)/2;
                mergesort(a, l, m);
                mergesort(a, m+1, r);

                for(i=m+1; i>l; i--) b[i-1] = a[i-1];
                for(j=m; j<r; j++) b[r+m-j] = a[j+1];
                for(k=l; k<=r; k++) a[k] = (b[i]<b[j]) ? b[i++] : b[j--];
        }
}

void main(){
        char chr[]="asortingexmple";

        mergesort(chr, 0, strlen(chr)-1);

        printf("sort : %sn", chr);
}
-------------------------------------------------------------------


?

  1. [js] 큐 형식으로 배열사용.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views7038
    Read More
  2. [c] openssl 샘플코드.. 어려움 ㅠㅠ

    Date2013.04.23 CategoryDevelop Byhooni Views7037
    Read More
  3. [js] 이미지 미리 로딩하기

    Date2003.04.23 CategoryDevelop Byhooni Views7033
    Read More
  4. [c][java] 소켓 프로그래밍(채팅 서버 C, 클라이언트 Java)

    Date2003.04.23 CategoryDevelop Byhooni Views7029
    Read More
  5. [php] 메모장 - 웅지학원 ([c] mysql 백업프로그램 포함)

    Date2003.04.23 CategoryDevelop Byhooni Views7025
    Read More
  6. [js] 점점 커지는 새창..

    Date2003.04.23 CategoryDevelop Byhooni Views7020
    Read More
  7. [c] 패킷 에널라이저 예제 소스(성안당)

    Date2013.04.23 CategoryDevelop Byhooni Views6998
    Read More
  8. [c++] 템플릿(Template) 예제 소스..

    Date2013.04.23 CategoryDevelop Byhooni Views6996
    Read More
  9. [c] 소켓 프로그래밍 요약..

    Date2003.04.23 CategoryDevelop Byhooni Views6992
    Read More
  10. [web] 웹 연동 프로그램 모음..

    Date2013.04.23 CategoryDevelop Byhooni Views6980
    Read More
  11. [c] 단기과정[01/24] 정렬 알고리즘

    Date2003.04.23 CategoryDevelop Byhooni Views6974
    Read More
  12. [c++] 트리컨트롤 스텝 2 예제..

    Date2013.04.23 CategoryDevelop Byhooni Views6972
    Read More
Board Pagination Prev 1 ... 42 43 44 45 46 47 48 49 50 51 ... 71 Next
/ 71