簡易通信録コード


最近暇で用事がなくて、通信録を作って、最も基礎的なあのような、実用から遠く離れて、純粋に手を練習して、だから幻想を抱かないでください、へへへ...主にC++の演算子を少し忘れて重载しました.また、C++を勉强していた时に直接ファイルの章を飞び越えたので、この机会に练习したいと思っています.もう一つの重要な原因は携帯电话がブラシを使うことです.ネット上にはバックアッププログラムがたくさんありますが、自分で使うことを书きたいと思っています.へへへ...収穫は以下の点がある:1.ファイルを使用するには、プログラムの開始時にすべて読み込み、終了後にすべて出力する方式を採用し、プログラム全体の実行時に2回のファイルの読み書きしか行わない(これは先輩が紹介した方法である).データは膨大ではないため、この方法では空間効率はまあまあである.2.すべての操作をクラスの構造関数に置くことで、自動呼び出しの効果をもたらすことができる(このようにして潜在的な危害があるかどうかは分からないが).
3.元のタイプの宣言はクラスに置くことができ、typedefに含まれるstruct宣言には構造関数のようなメンバー関数が現れ、自動的に初期化操作を完了することができ、非常に便利であることが分かった(以前はクラスを使っていたが、鶏を殺して牛刀を使うような感じがした).
欠点は次のとおりです.
1.苗字順に記録できない;2.入力が正当かどうかを判断するために番号桁をチェックしていない機能.
3.コードは簡潔ではありません.特に名前と番号で検索すると1つの関数を合成することができますが、私は2つ使いました.
"contacts.h"
#include<string>
#include<iostream>
using namespace std;

#include<fstream>

class Contacts
{
public:
	Contacts();//    
private:
	void UI();//    
	void Read();//       
	void SearchName(string);//     
	void SearchNum(string);//     
	void Insert(string,string);//    
	void ShowAllRecord();//      
	void DeleteName(string);//     
	void DeleteNum(string);//     
	void DeleteMenu();//    
	void Save();//       
	void SearchRecordMenu();//      
	void InsertRecordMenu();//      
	typedef struct Record
	{
		string name;
		string phonenum;
	}Record;//           
	typedef struct ListNode
	{
		Record record;
		ListNode *next;
		ListNode()
		{
			next=NULL;
		}
	}ListNode;//      
	typedef struct List
	{
		ListNode* firstrecord;
		int listlen;
		List()
		{
			listlen=0;
			firstrecord=NULL;
		}
	}List;//         
	List l;
};

Contacts::Contacts()
{
	Read();
	int choice;
	while(1)
	{
		system("cls");
		UI();
		cout<<"1 .     "<<endl
			<<"2 .     "<<endl
			<<"3 .     "<<endl
			<<"4 .     "<<endl
			<<"5 .   "<<endl<<endl;
		cout<<"      ?"<<endl;
		cin>>choice;
		system("cls");
		switch(choice)
		{
		case 1:
			SearchRecordMenu();
			break;
		case 2:
			InsertRecordMenu();
			break;
		case 3:
			DeleteMenu();
			system("pause");
			break;
		case 4:
			system("cls");
			ShowAllRecord();
			system("pause");
			break;
		case 5:
			system("cls");
			Save();
			return;
		}
	}
}

void Contacts::UI()//    
{
	 cout<<"************************************************************"<<endl
	 <<"*                                                          *"<<endl
	 <<"*                                                          *"<<endl
	 <<"*                                                     *"<<endl
	 <<"*                                                          *"<<endl
	 <<"*                                                          *"<<endl
     <<"************************************************************"<<endl;
}

void Contacts::Read()
{
	ifstream infile;
	infile.open("data.txt",ios::in);
	if(infile!=NULL)
	{
		string name,num;
		ListNode *p;
		while(infile>>name>>num)
		{
			if(l.firstrecord==NULL)
			{
				l.firstrecord=new ListNode;
				l.firstrecord->record.name=name;
				l.firstrecord->record.phonenum=num;
				p=l.firstrecord;
			}
			else
			{
				p->next=new ListNode;
				p=p->next;
				p->record.name=name;
				p->record.phonenum=num;
			}
		}
	}
	infile.close();
}

void Contacts::Save()
{
	ofstream outfile;
	outfile.open("data.txt",ios::out);
	if(outfile!=NULL)
	{
		ListNode *p=l.firstrecord;
		while(p!=NULL)
		{
			outfile<<p->record.name<<" "<<p->record.phonenum<<endl;
			p=p->next;
		}
	}
	outfile.close();
}

void Contacts::SearchName(string name)//       
{
	system("cls");
	ListNode *p=l.firstrecord;
	bool find=false;
	while(p!=NULL)
	{
		if(p->record.name==name)
		{
			cout<<p->record.name<<" : "<<p->record.phonenum<<endl;
			find=true;
		}
			p=p->next;
	}
	if(find==false)
	{
		cout<<"      !"<<endl
			<<"       ?(y/n)"<<endl;
		char choice;
		string num;
		while(1)
		{
			cin>>choice;
			system("cls");
			switch(choice)
			{
			case 'y':
				cout<<"   "<<name<<"     :"<<endl;
				cin>>num;
				system("cls");
				Insert(name,num);
				return;
			case 'n':
				return ;
			default:
				cout<<"       ?(y/n)"<<endl;
				break;
			}
		}
		}
}

void Contacts::SearchNum(string num)//       
{
	system("cls");
	ListNode *p=l.firstrecord;
	bool find=false;
	while(p!=NULL)
	{
		if(p->record.phonenum==num)
		{
			cout<<p->record.name<<" : "<<p->record.phonenum<<endl;
			find=true;
		}
		p=p->next;
	}
	if(find==false)
	{
		cout<<"      !"<<endl
			<<"       ?(y/n)"<<endl;
		char choice;
		string name;
		while(1)
		{
			cin>>choice;
			system("cls");
			switch(choice)
			{
			case 'y':
				cout<<"     "<<num<<"     "<<endl;
				cin>>name;
				system("cls");
				Insert(name,num);
				return;
			case 'n':
				return ;
			default:
				cout<<"       ?(y/n)"<<endl;
				break;
			}
		}
	}
}

void Contacts::Insert(string name,string num)//    
{
	ListNode *p=l.firstrecord;
	if(p==NULL)
	{
		l.firstrecord=new ListNode;
		l.firstrecord->record.name=name;
		l.firstrecord->record.phonenum=num;
	}
	else
	{
		while(p->next!=NULL)
			p=p->next;
		p->next=new ListNode;
		p=p->next;
		p->record.name=name;
		p->record.phonenum=num;
	}
}

void Contacts::ShowAllRecord()
{
	ListNode *p;
	if((p=l.firstrecord)==NULL)
	{
		cout<<"     !"<<endl;
		return;
	}
	while(p!=NULL)
	{
		cout<<p->record.name<<" : "<<p->record.phonenum<<endl;
		p=p->next;
	}
}

void Contacts::SearchRecordMenu()
{
	int choice;
	char quit;
	string name,num;		
	while(1)
	{
		cout<<"   (1)     (2)     ?"<<endl<<endl;
		cin>>choice;
		system("cls");
		switch(choice)
		{
		case 1:
				cout<<"           :"<<endl<<endl;
				cin>>name;
				system("cls");
				SearchName(name);
				break;
		case 2:
				cout<<"             :"<<endl<<endl;
				cin>>num;
				system("cls");
				SearchNum(num);
				break;
		}
		cout<<"   ?(y/n)"<<endl<<endl;
		cin>>quit;
		system("cls");
		if(quit=='y')
			break;
		else if(quit=='n')
			continue;
		else
		{
			cout<<"     !"<<endl<<endl;
			break;
		}
	}
}

void Contacts::InsertRecordMenu()
{
	char quit;
	string name,num;		
	while(1)
	{
		cout<<"             (       ) :"<<endl<<endl;
		cin>>name>>num;
		system("cls");
		Insert(name,num);
		cout<<"   ?(y/n)"<<endl<<endl;
		cin>>quit;
		system("cls");
		if(quit=='y')
			break;
		else if(quit=='n')
			continue;
		else
		{
			cout<<"   !"<<endl<<endl;
			break;
		}
	}
}

void Contacts::DeleteMenu()
{
	int choice;
	string name,num;
	cout<<"   (1)     (2)    ?"<<endl;
	cin>>choice;
	system("cls");
	switch(choice)
	{
	case 1:
		cout<<"          :"<<endl;
		cin>>name;
		system("cls");
		DeleteName(name);
		break;
	case 2:
		cout<<"          :"<<endl;
		cin>>num;
		system("cls");
		DeleteNum(num);
		break;
	}
}

void Contacts::DeleteName(string name)
{
	ListNode *pre,*p;
	pre=p=l.firstrecord;
	if(p!=NULL)
	{
		while(p!=NULL&&p->record.name!=name)
		{
			pre=p;
			p=p->next;
		}
		if(p==NULL)
		{
			cout<<"       !"<<endl;
			return;
		}
		else
		{
			if(p->next==NULL)
			{
				if(pre==p)
				{
					l.firstrecord=NULL;
					delete p;
				}
				else
				{
					pre->next=NULL;
					delete p;
				}
			}
			else
			{
				if(pre==p)
				{
					l.firstrecord=l.firstrecord->next;
					delete p;
				}
				else
				{
					pre->next=p->next;
					delete p;
				}
			}
			cout<<"    !"<<endl;
		}
	}
}

void Contacts::DeleteNum(string num)
{
	ListNode *pre,*p;
	pre=p=l.firstrecord;
	if(p!=NULL)
	{
		while(p!=NULL&&p->record.phonenum!=num)
		{
			pre=p;
			p=p->next;
		}
		if(p==NULL)
		{
			cout<<"       !"<<endl;
			return;
		}
		else
		{
			if(p->next==NULL)
			{
				if(pre==p)
				{
					l.firstrecord=NULL;
					delete p;
				}
				else
				{
					pre->next=NULL;
					delete p;
				}
			}
			else
			{
				if(pre==p)
				{
					l.firstrecord=l.firstrecord->next;
					delete p;
				}
				else
				{
					pre->next=p->next;
					delete p;
				}
			}
		}
		cout<<"    !"<<endl;
	}
}

"main.cpp"
#include"Contacts.h"

int main()
{
	Contacts contact;
}