数据结构链表实现学生信息的建立,插入,删除
数据结构链表实现学生信息的建立,插入,删除
日期:2014-03-30 14:01:39 人气:1
#include"iostream"
#include"string"
using namespace std;
struct student
{
string name;
string sex;
int age;
};
student stu[100];
static int n=0;
//输入学生信息
int initlist()
{
int i=0;
cout<<"请输入你要建立的