|
/ 토큰추출하여 define,undef매크로가 나올경우
// 환형 이중 링크드 리스트에 상입,제거하는 프로그램
#include <stdio.h>
#include <stdlib.h>
typedef struct macro_s *list_pointer;
typedef struct macro_s {
char *name;
char *value;
list_pointer next, prev;
}macro;&
|
- 페이지 12페이지
- 가격 2,500원
- 등록일 2006.05.03
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
리스트 출력, 메뉴 추가, 총 금액 계산등 프로그램 메뉴를
선택할 수 있도록 switch-case문을 이용한다.
■ 결과화면
○ 메뉴화면
1
○ show the menu(1번) 실행화면
- 구조체 배열 선언시 바로 세 개의 메뉴를 초기화 시켰기 때문에 이미 저
|
- 페이지 3페이지
- 가격 800원
- 등록일 2009.06.01
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
using System;
using System.Collections.Generic;
using System.Text;
class node
{
public int data;
public node left; //이중 연결 리스트
public node right;
} c# 으로 구현한 더블 링크드 리스트
|
- 페이지 1페이지
- 가격 800원
- 등록일 2006.11.18
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <stdlib.h>
#define TRUE 1
#define FALSE 0
typedef struct linked_list {
int data;
struct linked_list *link;
} linkedList;
linkedList *createlinkedList(); //list를 초기화시킨다.
linkedList *make_node(); //노드를 만든
|
- 페이지 1페이지
- 가격 1,300원
- 등록일 2012.11.13
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
LINKED_LIST.CPP
// *************
// *LINKED_LIST*
// *************
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct LIST {
char name[20];
char phone[20];
struct LIST *prev;
struct LIST *next;
};
str
|
- 페이지 14페이지
- 가격 7,900원
- 등록일 2013.12.16
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|