Contents

조회 수 11885 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

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

단축키

Prev이전 문서

Next다음 문서

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

# 간단한 링크드 리스트 자료형 예제

typedef struct { 
    int        index; 
    char    name[10]; 
    char    sex; 
    int      age; 
    char    mail[50]; 
    char    phone[15]; 
    char    address[128]; 
}USER_INFO; 

typedef struct list_node *list_ptr; 
typedef struct list_node { 
    USER_INFO user_info; 
    list_ptr next; 
}LIST_NODE; 
list_ptr first=NULL; 

unsigned long list_cnt=0; 

list_ptr find_list_ptr(int node) 
{ 
    unsigned long i; 
    list_ptr tmp=first; 

    if( node > list_cnt ) 
        node = list_cnt; 

    if( tmp == NULL ) 
        return NULL; 

    for( i=1 ; i<node ; i++ ) 
    { 
        tmp = tmp->next; 
    } 

    return tmp; 
} 

//    add list to end of list 
void add_list() 
{ 
    list_ptr tmp, end; 


    tmp = (list_ptr)malloc( sizeof(LIST_NODE) ); 
    tmp->next = NULL; 

    if( list_cnt == 0 ) 
    { 
        first = tmp; 
    } 
    else 
    { 
        end = find_list_ptr( list_cnt ); 
        end->next = tmp; 
    } 


    list_cnt++; 
} 

void insert_list(unsigned long node) 
{ 
    list_ptr tmp, node_ptr,node_next_ptr ; 

    tmp = (list_ptr)malloc( sizeof(LIST_NODE) ); 

    tmp->next=NULL; 

    if( node >= list_cnt) 
    { 
        add_list(); 
        return; 
    } 

    node_ptr = find_list_ptr(node); 
    node_next_ptr = node_ptr->next; 

    node_ptr->next = tmp; 
    tmp->next = node_next_ptr; 

    list_cnt++; 
} 

void Del_list() 
{ 
    unsigned long i; 
    list_ptr tmp = first; 
    list_ptr tmp_next; 

    for( i=0 ; i<list_cnt; i++ ) 
    { 
        if( tmp->next != NULL) 
        { 
            tmp_next = tmp->next; 
            free(tmp); 
            tmp = tmp_next; 
        } 
        else 
        { 
            if( tmp != NULL ) 
                free(tmp); 
        } 
    } 

    list_cnt = 0; 
}


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
697 Develop [c] 싱글, 더블 링크리스트(linked list)로 만든 예제.. file hooni 2003.04.23 8625
696 Develop [js] 초간단 현재 사이트 쿠키 확인하는 명령~ hooni 2003.04.23 8647
695 Develop 객체지향 프로그래밍에 대한 개념.. (객체) file hooni 2013.04.23 8647
694 Develop [c] 정사각배열의 서브 배열의 최대 값 구하기 file hooni 2003.04.23 8650
693 Develop [c] 단기과정[01/24] 정렬 알고리즘 hooni 2003.04.23 8662
692 Develop [php] 웹 응용프로그램(engines) 모음 file hooni 2013.04.23 8670
691 Develop [c] 소켓 스트림 서버/클라이언트 (UDP) file hooni 2013.04.23 8671
690 Develop [c] 관계형 연산자에 대한 설명 hooni 2013.04.23 8677
689 Develop [jsp] 정적/동적(차트생성) 이미지 전달 file hooni 2003.04.23 8686
688 Develop [c] 격자 직사각형 넓이 구하기 file hooni 2013.04.23 8686
687 Develop 논문 실험용 고려대 툴바 ㅎㅎ secret hooni 2013.04.23 8686
686 Develop [c++] 초간단 스택 두 가지 방식(class, struct) file hooni 2013.04.23 8688
Board Pagination Prev 1 ... 36 37 38 39 40 41 42 43 44 45 ... 99 Next
/ 99