도와주십시요 ㅜㅜ 자료구조 ㅜㅜ
도널드
학교 과제인데..
여기서 도대체 모르겠습닏.ㅜㅜ
이담에 어떻게 해야할까요..?
도서목록을Search Tree를사용하여만들것.
도서정보에도서위치/대출자이름추가
도서추가/삭제기능추가
도서정보를파일에저장할것
질문 내용 :#include stdafx.h
#define MAX_BOOKS 100
struct my_model {
int idx;
char title[200];
int checkout; // 1: checkout, 0:checkin
} book_model[MAX_BOOKS] = {
{1, 이기적 유전자, 0},
{2, 자료구조, 0},
{3, 운영체제, 0},
{4, 분산시스템, 0},
{5, 1Q84, 0},
{6, 일각수의 꿈, 0},
{7, 삼국지, 0},
{8, 흐르는 강물처럼, 0},
{9, 논리적 글쓰기, 0},
{10, 그리스 로마 신화, 0},
{11, 로마인 이야기, 0}
};
int total_books;
int model_init()
{
int i;
for (i = 0; i MAX_BOOKS; i++) {
if (book_model[i].idx = 0)
break;
}
total_books = i;
return total_books;
}
int model_get_num_of_books()
{
return total_books;
}
struct my_model *model_get_books(int idx)
{
int i;
for (i = 0; i MAX_BOOKS; i++) {
if (book_model[i].idx == idx)
return &book_model[i];
}
return NULL;
}
int model_set_checkout(int idx, int checkout)
{
int i;
if (checkout != 0 && checkout != 1)
return 0;
for (i = 0; i MAX_BOOKS; i++) {
if (book_model[i].idx == idx) {
book_model[i].checkout = checkout;
return 1;
}
}
return 0;
}
int view_init()
{ printf(도서관리 시스템: 도서수:%d\n, model_get_num_of_books());
return 0;
}
int view_top_menu()
{
int input;
do {
printf(==상위 메뉴==\n);
printf([1] 조회\n[2] 대출\n[3] 반납\n);
printf(입력:\n);
scanf(%d, &input);
if (input == 1 || input == 2 || input == 3)
return input;
} while(1);
return 0;
}
int view_checkout_menu()
{
int input;
do {
printf(==대출 메뉴==\n);
printf(도서번(도서번호입력:\n);
scanf(%d, &input);
if (input 0)
return input;
} while(1);
return 0;
}
int view_checkin_menu()
{
int input;
do {
printf(==반납 메뉴==\n);
printf(도서번호입력:\n);
scanf(%d, &input);
if (input 0)
return input;
} while(1);
return 0;
}
int view_info_menu()
{
int input;
do {
printf(==조회 메뉴==\n);
printf(도서번호입력:\n);
scanf(%d, &input);
if (input 0)
return input;
} while(1);
return 0;
}
int view_book_info(int idx)
{
struct my_model *pmodel; pmodel = model_get_books(idx);
if (pmodel) {
printf(도서 조회 결과\n);
printf(%d %s %s\n, pmodel-idx, pmodel-title, pmodel-checkout ? 대출중 : 대출가능);
return 1;
} else {
return 0;
}
}
int view_message(char *msg)
{
printf(메시지: %s\n, msg);
return 1;
}
int con_checkout(int idx)
{ if (model_set_checkout(idx, 1)) { view_message(대출하였습니다.\n);
return 1;
}
return 0;
}
int con_checkin(int idx)
{ if (model_set_checkout(idx, 0)) { view_message(반납하였습니다.\n);
return 1;
}
return 0;
}
int con_info(int idx)
{
if (idx 0) return view_book_info(idx);
else
return 0;
}
int _tmain(int argc, _TCHAR* argv[])
{
int input; model_init(); view_init();
do { input = view_top_menu();
switch(input) {
case 1: input = view_info_menu(); con_info(input);
break;
case 2: input = view_checkout_menu(); con_checkout(input);
break;
case 3: input = view_checkin_menu(); con_checkin(input);
break;
}
} while(1);
return 0;
}
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2690576 | bin파일 저장 | 다올 | 2025-04-06 |
2690547 | C언어 뒷부분이라 너무 어려워서요;; 프로그래밍 하나만 부탁드립니다 (4) | 그루터기 | 2025-04-05 |
2690517 | cygwin에서요.. (1) | 엘보어 | 2025-04-05 |
2690486 | 문자열과 문자형이요 ~ | 다스리 | 2025-04-05 |
2690344 | 일본어 주석 깨짐 문제 (3) | 연하얀 | 2025-04-04 |
2690314 | 암호문 만들기 -비제네르- | 이퓨리한나 | 2025-04-03 |
2690292 | 왕초보자의 질문!!!!!! 도와주세요 (1) | 하랑 | 2025-04-03 |
2690269 | 정올 문제 인데.. 흠 | 반월 | 2025-04-03 |
2690237 | sizeof에서 short형을 썻는데 왜 4byte가 나올까요? (1) | 바나나 | 2025-04-03 |
2690183 | 문자열과 포인트 비교 (2) | 미즈 | 2025-04-02 |
2690154 | a -48 ? | 희미한눈물 | 2025-04-02 |
2690094 | 테트리스 질문요. | 지후 | 2025-04-01 |
2690066 | 문자열비교!! (1) | 매디 | 2025-04-01 |
2689888 | 좀도와주세요;; ㅠㅠ | 사람 | 2025-03-30 |
2689856 | 메뉴 그리는 거 질문 | 나라빛 | 2025-03-30 |
2689831 | c언어 프로그램 추천 | 하연 | 2025-03-30 |
2689801 | c언어 time.h에서 작동이 중지되었습니다. | 하람 | 2025-03-30 |
2689772 | 2차원 배열의 배열명에 대해서.. | 옆집꼬마야 | 2025-03-29 |
2689740 | 게임 TCP소켓 질문 (2) | 불꾼 | 2025-03-29 |
2689711 | 반복문 모래시계 | 한뎃집 | 2025-03-29 |