|
list)
typedef struct chunk{
int start;
int size;
struct chunk *link;
}chunk;
chunk *avail;
// 초기화 함수
void init(){
chunk *init;
init=(chunk*)malloc(sizeof(chunk));
avail = init; //avail을 initionalize 해줌
init->size = MAX;
init->start = 0;
int main(){
|
- 페이지 4페이지
- 가격 5,000원
- 등록일 2007.07.26
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
list_status();
break;
}
else if(ch == '5'){ //프로그램종료, 실제론 main 에서 종료
break;
}
else{ //잘못된 메뉴번호 선택시 재입력 요청
printf("\n\t\tInvalid Number Reselect : ");
fflush(stdin);
gets(temp);
sscanf(temp,"%c",&ch);
}
}
}
//>>>>>>>>>>>>>>
|
- 페이지 12페이지
- 가격 2,000원
- 등록일 2007.09.10
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
linked list를 이용하여, Queue를 구현하시오.
ADTLinkedlist.c
#include <stdio.h>
#include <stdlib.h>
// 구조체 선언
struct node
{
char name[5];
char email[30];
int tel; // 이름 메일 전화번호 선언
node *next;// 다음 노드의 주소를 가르킴
node *prev;
};
node *head; // head
|
- 페이지 16페이지
- 가격 2,800원
- 등록일 2012.04.15
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
list != NULL)
{
if((count % 6 ) == 0)
{
printf("\n") ;
for(i = 0 ; i < 15 ; i++)
printf(" ") ;
printf("\t\t") ;
count = 1 ;
}
printf("|%3d ,%2d|",plist->line_num, plist->word_num) ;
plist = plist->next ;
count = count + 1 ;
}
printf("\n");
return ;
}
5. 실험 결과 평가
이 프로그램은 scann
|
- 페이지 15페이지
- 가격 2,000원
- 등록일 2006.12.01
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
1. Preface
1.1 Objective
수업시간에 배운 Linked list를 이용하여 수강신청 시스템을 구현하는 것이 이번 프로그래밍 과제의 목표입니다.
이번 프로그래밍 과제를 완벽히 수행하기 위해서는 Linked list의 특성을 이용하여 구조체로 리스트의 틀을 만
|
- 페이지 27페이지
- 가격 4,000원
- 등록일 2012.02.07
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
/*
CreateDll 함수
함 수 명 : CreateDll
호출 함수 :
전달 인수 : 없음
반 환 값 : 없음
*/
void CreateDll(DLL *pSelf)
{
pSelf ->head = (NODE *)malloc(sizeof(NODE));
pSelf ->tail = (NODE *)malloc(sizeof(NODE));
pSelf ->head ->llink = pSelf ->head;
pSelf ->t
|
- 페이지 24페이지
- 가격 3,000원
- 등록일 2005.01.04
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
/*
CreateStackDll 함수
함 수 명 : CreateStackDll
호출 함수 :
전달 인수 : 없음
반 환 값 : 없음
*/
void CreateStackDll(StackDll *pSelf)
{
pSelf ->Bottom = (DLL *)malloc(sizeof(DLL));
CreateDll(pSelf ->Bottom);
pSelf ->Top = pSelf ->Bottom ->position;
pSe
|
- 페이지 29페이지
- 가격 3,000원
- 등록일 2005.01.04
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
/*
CreateQueueDll 함수
함 수 명 : CreateQueueDll
호출 함수 :
전달 인수 : 없음
반 환 값 : 없음
*/
void CreateQueueDll(QueueDll *pSelf)
{
pSelf ->list = (DLL *) malloc(sizeof(DLL)); /* DLL형으로 memory 할당 */
CreateDll(pSelf ->list);
pSelf ->front = pSelf ->
|
- 페이지 30페이지
- 가격 3,000원
- 등록일 2005.01.04
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
listHeader *plist, int coef, int expo)
// for inserting a node by descending order
void addPoly(listHeader* plist1, listHeader* plist2, listHeader* plist3 )
// add two polynomials, and save it
..... 소스코드 포함
보고서 목차
1. 프로그램 디자인
1) Llinked list
2) 문자열 처
|
- 페이지 50페이지
- 가격 3,300원
- 등록일 2010.01.04
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
List (All view) ┃ \n");
printf(" ┃ 3. 개인 명함 검색/수정/삭제 - Private Business Card Management ┃ \n");
printf(" ┃ 4. 전체 명함 삭제 - All Business Card Delete ┃ \n");
printf(" ┃ 5. 종료 - Exit
|
- 페이지 14페이지
- 가격 2,900원
- 등록일 2005.09.02
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|