Contents

Views 8584 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
313 Develop [c] 메세지 프로그램 (Server - Agent - Client) file hooni 2013.04.23 7910
312 Develop [c] 맵서치인 듯(옛날 컴에서 찾은 자료) file hooni 2013.04.23 8557
311 Develop [c] 마우스 따라다니는 고양이 - 네코95 (WinAPI) file hooni 2013.04.23 9432
310 Develop [c] 로또(Lotto) 번호 생성기 file hooni 2013.04.23 8279
309 Develop [c] 레포트용으로 제출했던 여러 소스코드 모음 file hooni 2003.04.23 9723
308 Develop [c] 라인수 입력받아 마름모꼴 출력하기.. hooni 2003.04.23 8164
307 Develop [c] 디피-헬만 키교환(Diffie–Hellman key exchange) 샘플 코드.. ㅋㄷ file hooni 2013.04.23 10127
306 Develop [c] 도스 공격(DoS Attack) 프로그램 file hooni 2013.04.23 12362
305 Develop [c] 도메인(호스트)으로 IP정보 알아오기.. (nslookup과 비슷) file hooni 2013.04.23 8553
304 Develop [c] 도메인 소켓(Unix Domain Socket) UDP file hooni 2013.04.23 10173
» Develop [c] 더블(이중) 연결리스트 예제.. file hooni 2013.04.23 8584
302 Develop [c] 달팽이 배열? 인지 먼지.. ㅋㅋ hooni 2013.04.23 8335
Board Pagination Prev 1 ... 68 69 70 71 72 73 74 75 76 77 ... 99 Next
/ 99