Contents

조회 수 6955 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
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. 프로그래밍 소스 관련 사이트..

    Date2013.04.23 CategoryDevelop Byhooni Views16487
    Read More
  2. 도메인 관련 솔루션 분석할 거.. ㅋㄷ

    Date2013.04.23 CategoryDevelop Byhooni Views6983
    Read More
  3. [js] 수명체크 프로그램 ㅋㅋ

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

    Date2013.04.23 CategoryDevelop Byhooni Views6948
    Read More
  5. [js] 숫자만 입력하게 하는 자바스크립트

    Date2013.04.23 CategoryDevelop Byhooni Views6798
    Read More
  6. [js] 셀렉트박스(select)의 옵션(option) 동적으로 추가/제거

    Date2013.04.23 CategoryDevelop Byhooni Views8061
    Read More
  7. [c] 학교 건물 최단거리 찾는 웹 연동 프로그램

    Date2013.04.23 CategoryDevelop Byhooni Views6801
    Read More
  8. [c] 암호화 알고리즘 DES 구현 ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views7434
    Read More
  9. [c] 내가 만든 암호화 프로그램.. 좋아^^

    Date2013.04.23 CategoryDevelop Byhooni Views7022
    Read More
  10. [c] 숫자(int, Number)를 hex코드로 변환하는 소스

    Date2013.04.23 CategoryDevelop Byhooni Views8123
    Read More
  11. [c] 문자열 치환해주는 str_replace() 함수

    Date2013.04.23 CategoryDevelop Byhooni Views7386
    Read More
  12. [c] GD라이브러리 설치 테스트 소스

    Date2013.04.23 CategoryDevelop Byhooni Views8145
    Read More
Board Pagination Prev 1 ... 40 41 42 43 44 45 46 47 48 49 ... 71 Next
/ 71