Contents

Views 8662 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. [dos] 노트북 백업 스크립트 xcopy 명령 예제

    Date2003.04.23 CategorySystem/OS Byhooni Views41792
    Read More
  2. [js] 가운데 새창 뜨는 함수와 이벤트

    Date2003.04.23 CategoryDevelop Byhooni Views7936
    Read More
  3. [algorithm] Greedy (탐욕 기법)

    Date2003.04.23 CategoryAlgorithm Byhooni Views16822
    Read More
  4. [sql] alter table 쿼리 예제

    Date2003.04.23 CategorySystem/OS Byhooni Views13314
    Read More
  5. [sql] 내 방명록 답글 찾는 쿼리문.. (JOIN 구문)

    Date2003.04.23 CategorySystem/OS Byhooni Views13774
    Read More
  6. [c++] Window API(MFC) 오목 게임

    Date2003.04.23 CategoryDevelop Byhooni Views11148
    Read More
  7. [java] 스윙(swing) 인터페이스 이용해서 만든 구구단.. ㅋㅋ

    Date2003.04.23 CategoryDevelop Byhooni Views8175
    Read More
  8. [c] 프로그래밍 과제..(colprint)

    Date2003.04.23 CategoryDevelop Byhooni Views8513
    Read More
  9. [php] 초간단 웹 카운터..

    Date2003.04.23 CategoryDevelop Byhooni Views8127
    Read More
  10. [jsp][php] LDAP 프로그래밍..

    Date2003.04.23 CategoryDevelop Byhooni Views8535
    Read More
  11. [c] C에서 MySQL DB 사용하기~

    Date2003.04.23 CategoryDevelop Byhooni Views8344
    Read More
  12. [php] 초간단 게시판 페이지 분할 알고리즘

    Date2003.04.23 CategoryDevelop Byhooni Views10116
    Read More
Board Pagination Prev 1 ... 76 77 78 79 80 81 82 83 84 85 ... 99 Next
/ 99