LINKED_LIST 구현 C++
본 자료는 미리보기를 지원하지 않습니다.
닫기
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
해당 자료는 4페이지 까지만 미리보기를 제공합니다.
4페이지 이후부터 다운로드 후 확인할 수 있습니다.

소개글

LINKED_LIST 구현 C++에 대한 보고서 자료입니다.

목차

[Debug]
LINKED_LIST.ASP
LINKED_LIST.CPP
LINKED_LIST.dsp
LINKED_LIST.dsw
LINKED_LIST.ncb
LINKED_LIST.opt
LINKED_LIST.plg


1.26MB
파일 14, 폴더 1

본문내용

LINKED_LIST.CPP



// *************
// *LINKED_LIST*
// *************


#include
#include
#include

struct LIST    {
    char name[20];
    char phone[20];
    struct LIST *prev;
    struct LIST *next;
};

struct LIST *head, *tail, *ptr;

void Input();
void Delete();
void Save();
void Load();
void Print();

void main()
{
    char input;

    head = NULL;
    tail = NULL;
    ptr = NULL;

    Load();
    
    while(1)    {
        printf("\n*************\n");
        printf("*LINKED_LIST*\n");
        printf("*************\n\n");
        printf("[1]입력 [2]삭제 [3]출력 [9]종료 \n");
        fflush(stdin); //입력 버퍼 깨끗하게 클리어
        input = getchar();

        switch (input)    {
            case '1' : Input();
                 break;
            case '2' : Delete();
                 break;

            case '3' : Print();
                 break;

            case '9' : Save();
                 exit(0);

            default : printf("재입력!\n");
                     break;

        }
    }
}

void Load()
{





▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒



LINKED_LIST.dsp




# Microsoft Developer Studio Project File - Name="LINKED_LIST" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **

# TARGTYPE "Win32 (x86) Console Application" 0x0103

CFG=LINKED_LIST - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "LINKED_LIST.mak".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "LINKED_LIST.mak" CFG="LINKED_LIST - Win32 Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "LINKED_LIST - Win32 Release" (based on "Win32 (x86) Console Application")
!MESSAGE "LINKED_LIST - Win32 Debug" (based on "Win32 (x86) Console Application")
!MESSAGE

# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
CPP=cl.exe
RSC=rc.exe
  • 가격7,900
  • 페이지수14페이지
  • 등록일2013.12.16
  • 저작시기2009.04
  • 파일형식압축파일(zip)
  • 자료번호#897818
본 자료는 최근 2주간 다운받은 회원이 없습니다.
청소해
다운로드 장바구니