Develop
2013.04.23 14:56
[c] 더블(이중) 연결리스트 예제..
조회 수 7872 댓글 0
첨부 '1' |
---|
두가지 이중 연결 리스트.. (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();
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
433 | Develop |
[c] 플러드 필링 (flood filling) 알고리즘..
![]() |
hooni | 2013.04.23 | 7784 |
432 | Develop |
[c++] 헤더, 소스 파일 분리해서 작성해본 테스트 소스
![]() |
hooni | 2013.04.23 | 7076 |
» | Develop |
[c] 더블(이중) 연결리스트 예제..
![]() |
hooni | 2013.04.23 | 7872 |
430 | Develop |
[c][java] 주사선 채우기 알고리즘(scan line filling algorithm) 구현
![]() |
hooni | 2013.04.23 | 9374 |
429 | Develop |
[c++] 초간단 스택 두 가지 방식(class, struct)
![]() |
hooni | 2013.04.23 | 8094 |
428 | System/OS | [ms-sql] 서브스트링(substring), 프로시저(SP) 작성 예제 | hooni | 2013.04.23 | 42061 |
427 | Develop |
[c] 구구단 최단라인 ㅡㅡ;
![]() |
hooni | 2013.04.23 | 8535 |
426 | Develop |
[c] 압축 알고리즘 소스 및 정리
![]() |
hooni | 2013.04.23 | 9149 |
425 | Develop |
베지어 곡선(Bézier curve) 알고리즘(spline 곡선)
3 ![]() |
hooni | 2013.04.23 | 34175 |
424 | Develop |
[c] 윈도우 API sin 함수 출력..
![]() |
hooni | 2013.04.23 | 16090 |
423 | Develop |
[c] 윈도우 API Viewport와 Window
![]() |
hooni | 2013.04.23 | 6345 |
422 | Develop |
[c] 함수 목록과 예제 소스 파일
![]() |
hooni | 2013.04.23 | 7685 |