C++양 방향 링크 간단 한 주소록 실현
#include<iostream>
#include<fstream>
#include <stdlib.h>
#include<string>
using namespace std;
typedef struct Directory
{
string Name;
string Mobile;
string Wechatnumber;
string STREET;
string CITY;
string EIP;
string STATE;
struct Directory* next;
struct Directory* prev;
}Directory;
//
Directory p0 = {"0","0","0","0","0","0","0",NULL,NULL};
Directory pn = {"0","0","0","0","0","0","0",NULL,NULL};
// ,
Directory *head = &p0;
//
void enter(Directory*);
void display_list();
void printf_a();
void display_menu(Directory*);
int key_ramove(string);
void display_listfiile();
Directory* find_load(string);
Directory* load();
int main()
{
cout<<"========================================"<<endl;
cout<<"= ="<<endl;
cout<<"= ="<<endl;
cout<<"= ="<<endl;
cout<<"= 1. 2. 3. 4. ="<<endl;
cout<<"========================================"<<endl;
int i = 0; // ,
string key; // ,
p0.next = &pn; // ,
pn.prev = &p0;
while(1)
{
cin>>i; // i,
switch(i){ // ,i , case
case 1:
load(); //
cout<<endl;
cout<<" !!!"<<endl;
printf_a();
break;
case 2:
cout<<" :";
cin>>key;
key_ramove(key); // ,
printf_a();
break;
case 3:
cout<<" :";
cin>>key;
display_menu(find_load(key)); // ,find_load(key)
printf_a(); /
break;
case 4:
display_list(); //
printf_a();
break;
case 5:
display_listfiile(); // "address.txt"
break;
default:
break;
}
}
return 0;
}
/**************************************************
* :void
* :
***************************************************/
void printf_a()
{
cout<<"----------------------------------------"<<endl;
cout<<"- 1. 2. 3. 4. -"<<endl;
cout<<"- 5. txt -"<<endl;
cout<<"----------------------------------------"<<endl;
}
/**************************************************
* :Directory*
* : ,
***************************************************/
Directory* load()
{
Directory *p = new Directory; //
enter(p);
p->next = head->next; //p
head->next = p; // p
p->prev = head; //p
p->next->prev = p;
head = p; // p
return p;
}
/**************************************************
* :void
* :
* : 10
***************************************************/
Directory* find_load(string key_name)
{
Directory *p;
p = &pn;
for(p; p->prev != NULL ;p = p->prev)
{
if(p->Name == key_name )
{
return p;
}
}
return NULL;
}
/**************************************************
* :void
* :
* : 15
***************************************************/
int key_ramove(string key_name)
{
Directory *p; //
p = &pn;
for(p; p->prev != NULL;p = p->prev)
{
if(p->Name == key_name )
{
head = pn.prev;
p->prev->next = p->next; //p p
p->next->prev = p->prev; //p p
free(p); // p
return 0; // ,
}
}
cout<<" !!!!"<<endl;
return 0;
}
/**************************************************
* :void
* :
* :Directtory( ) , 5
***************************************************/
void enter(Directory *P )
{
char jubge; //
string name, mobile;
cout<<" :";
cin>>name;
P->Name = name; // ,
cout<<" :";
cin>>mobile;
P->Mobile = mobile; // ,
cout<<" ?(Y/N)"<<endl;
cin>>jubge;
if(jubge == 'y' || jubge == 'Y')
{
string wechatnumber; //
string street; //
string city; //
string eip; //
string state; //
cout<<" :";
cin>>wechatnumber;
P->Wechatnumber = wechatnumber;
cout<<" :";
cin>>street;
P->STREET = street;
cout<<" :";
cin>>city;
P->CITY = city;
cout<<" :";
cin>>state;
P->STATE = state;
}else{ // y
P->Wechatnumber = "NULL";
P->STREET = "NULL";
P->CITY = "NULL";
P->STATE = "china";
}
}
/**************************************************
* :void
* : ( , )
***************************************************/
void display_list()
{
Directory *p; //
p = head; // p head
int i = 1; //
cout<<endl;
cout<<"*******************************************"<<endl;
cout<<" "<<endl;
cout<<"------------------------------------------"<<endl;
while(p->prev != NULL) // , p prev NULL
{
cout<<" "<<i<<": "<<p->Name<<endl; // p
cout<<"------------------------------------------"<<endl;
p = p->prev; //
i++;
}
cout<<"*******************************************"<<endl;
cout<<endl;
}
void display_listfiile()
{
Directory *p; //
p = &pn; // p head
int i = 1; //
ofstream fout("address.txt"); // address.txt ,
while(p->prev != NULL) // , p prev NULL
{
fout << i <<":" << p->Name <<endl; // address.txt
fout <<" " << p->Mobile <<endl;
fout <<" " << p->Wechatnumber <<endl;
fout <<" " << p->STREET <<endl;
fout <<" " << p->CITY <<endl;
fout <<" " << p->STATE <<endl;
fout <<endl;
p = p->prev; //
i++;
}
fout.close(); //
}
/**************************************************
* Directory
* :
***************************************************/
void display_menu(Directory *P)
{
if(P == NULL) // P ,
{
cout<<" !! "<<endl;
}else{
cout<<"* * * * * * * * * * * * * * * * * * * * "<<endl;
cout<<"* : "<<P->Name<<endl;
cout<<"* : "<<P->Mobile<<endl;
cout<<"* : "<<P->Wechatnumber<<endl;
cout<<"* : "<<P->STREET<<endl;
cout<<"* : "<<P->CITY<<endl;
cout<<"* :"<<P->STATE<<endl;
cout<<"* * * * * * * * * * * * * * * * * * * * "<<endl;
}
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Visual Studio에서 파일 폴더 구분 (포함 경로 설정)Visual Studio에서 c, cpp, h, hpp 파일을 폴더로 나누고 싶었습니까? 어쩌면 대부분의 사람들이 있다고 생각합니다. 처음에 파일이 만들어지는 장소는 프로젝트 파일 등과 같은 장소에 있기 때문에 파일...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.