Contents

Views 7480 Comment 0
Atachment
Attachment '1'
?

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
두가지 이중 연결 리스트.. (double linked list)

# 파일명 : list1.c
더블 연결 리스트 (추가, 삭제, 탐색)
typedef struct _node{
    int tag;
    int x;
    int y;
    struct _node *prev;
    struct _node *next;
}* node;

node head,tail;
int list_cnt;

void add_list(node ptr);
void make_node(int tag, int x, int y);
node find_ptr(int idx);
void del_all_list();


# 파일명 : list2.c
인덱스가 여러 개(배열)인 더블 연결 리스트 (추가, 삭제, 탐색)
#define MAXY 1024
typedef struct _node{
    int ye;    // y end
    float xs;    // x start
    float sp;    // slope
    struct _node *prev;
    struct _node *next;
}* node;
node head[MAXY];
node head[MAXY];

void add_list(int idx, node ptr);
void make_node(int idx, int ye, float xs, float sp);
node find_ptr(int idx, int idx2);
void del_list(int idx);
void del_all_list();



?

List of Articles
No. Category Subject Author Date Views
» Develop [c] 더블(이중) 연결리스트 예제.. file hooni 2013.04.23 7480
872 Develop [c] 도메인 소켓(Unix Domain Socket) UDP file hooni 2013.04.23 9313
871 Develop [c] 도메인(호스트)으로 IP정보 알아오기.. (nslookup과 비슷) file hooni 2013.04.23 6949
870 Develop [c] 도스 공격(DoS Attack) 프로그램 file hooni 2013.04.23 11597
869 Develop [c] 디피-헬만 키교환(Diffie–Hellman key exchange) 샘플 코드.. ㅋㄷ file hooni 2013.04.23 9122
868 Develop [c] 라인수 입력받아 마름모꼴 출력하기.. hooni 2003.04.23 6898
867 Develop [c] 레포트용으로 제출했던 여러 소스코드 모음 file hooni 2003.04.23 8117
866 Develop [c] 로또(Lotto) 번호 생성기 file hooni 2013.04.23 7183
865 Develop [c] 마우스 따라다니는 고양이 - 네코95 (WinAPI) file hooni 2013.04.23 7958
864 Develop [c] 맵서치인 듯(옛날 컴에서 찾은 자료) file hooni 2013.04.23 6913
863 Develop [c] 메세지 프로그램 (Server - Agent - Client) file hooni 2013.04.23 6478
862 Develop [c] 메시지큐(Message Queue) 설명.. (joinc) hooni 2013.04.23 14298
Board Pagination Prev 1 ... 21 22 23 24 25 26 27 28 29 30 ... 98 Next
/ 98