001

本文介绍了一个基于单链表实现的学生信息管理系统的设计与实现过程。该系统支持学生信息的增删改查等功能,并详细展示了如何利用MFC框架进行界面设计与交互逻辑的编写。

要求如下:

1)问题描述

    设计一个“学生成绩管理系统”。主要实现学生信息的录入、添加、修改、删除、排序和查看等基本功能。

2)具体要求

编写一个学生成绩管理程序。学生成绩以一个学生一条记录的形式存储,每个学生记录包含的信息有序号、学号、姓名及5门功课的成绩。具体功能如下:

a.  获取学生成绩。可以从文件中读取成绩,也可直接录入。

查询学生成绩,输入学生学号或姓名等信息后,显示学生在成绩单中的位置及所有信息。

b.  添加学生成绩,在学生成绩单的指定位置添加学生成绩信息。

c.  修改学生成绩,在学生成绩单中,修改指定学生的成绩信息。

d.  删除学生成绩,在学生成绩单中,删除指定学生的成绩信息。

e.  保存文件。当学生成绩单发生添加、修改、删除等变化后,都要对最终结果进行保存。

3)数据结构及算法分析

学生成绩可以用单链表存储,方便随时插入和删除学生成绩记录,实现动态管理。一个学生作为一个结点。

使用链表的基本算法实现学生成绩单的各项管理功能。

操作:

首先编译好自己的链表头文件和cpp文件(lianbiao.h,lianbiao.cpp),记住,只能在头文件中声明,不要定义,否则后面会出现头文件的重定义问题!参见http://m.xue163.com/19990/44531/445316870.html

新建MFC单文档应用程序,不选用Unicode库!在头文件里面把自己编辑的头文件添加进去,同样在源文件中再把自己编译的cpp文件添加进去,把stu.txt文件添加到代码里面去。

在资源视图中右击dialog,新建对话框,加上4个按钮:添加,修改,删除,查找,添加一个类CDlg

然后在menu中的mainmenu中添加一个菜单,操作,子菜单:学生管理系统,注意属性popup为false!右击学生管理系统为这个菜单项添加事件处理程序;记住,在头文件中添加你的主对话框的类#include"Dlg.h",菜单项对应的程序如下:

void Cstudent_adminView::On32771()    //On32771为ID
{
CDlg studentadministrator;//主对话框类定义一个对象
studentadministrator.DoModal();//DoModal是打开这个对话框
}

而后,新建对话框:

查找:设计按两个静态文本,两个编辑框,两个按钮,实现能够按照学号查找或按照名字查找的功能

同样右击添加类CDlg_find,并为两个编辑框添加变量xuehao2,name2,双击主对话框中的查找按钮将这个对话框和CDlg_find建立的对话框连接起来,记住在头文件声明!#include"Dlg_find"  代码如下:

void CDlg::OnBnClickedButton2()
{
CDlg_find finddata;
finddata.DoModal();
}

双击子对话框中的两个按钮:按学号查找和按名字查找,分别编辑对应的程序,记住,编辑的时候把自己的编辑的链表类的头文件写上!代码如下

void CDlg_find::OnBnClickedButton1()
{
List DC;
DC.inputfile();
UpdateData(TRUE);
string a;
a=xuehao2.GetBuffer();
node *p=DC.Find1(a);
if(p==NULL)
MessageBox(_T("找不到对应学号的学生,请检查!"),_T("系统消息"),MB_ICONEXCLAMATION);
else
{CString num1,xuehao1,name1,chinese,math,english,physic,chemical;
num1=p->student.num.c_str();
xuehao1=p->student.xuehao.c_str();
name1=p->student.name.c_str();
chinese=p->student.chinese.c_str();
math=p->student.math.c_str();
english=p->student.english.c_str();
physic=p->student.physic.c_str();
chemical=p->student.chemical.c_str();
MessageBox(_T("序号:")+num1+_T('\n')
+_T("学号:")+xuehao1+_T('\n')
+_T("名字:")+name1+_T('\n')
+_T("语文:")+chinese+_T('\n')
+_T("数学:")+math+_T('\n')
+_T("英语:")+english+_T('\n')
+_T("物理:")+physic+_T('\n')
+_T("化学:")+chemical+_T('\n'),_T("系统消息"),MB_ICONASTERISK);
DC.MakeEmpty();}
// TODO: 在此添加控件通知处理程序代码
}




void CDlg_find::OnBnClickedButton4()
{
List DD;
DD.inputfile();
UpdateData(TRUE);
string a=name2.GetBuffer();
node *p=DD.Find2(a);
if(p==NULL)
MessageBox(_T("找不到对应的名字,请检查!"),_T("系统消息"),MB_ICONEXCLAMATION);
else{
CString num1,xuehao1,name1,chinese,math,english,physic,chemical;
num1=p->student.num.c_str();
xuehao1=p->student.xuehao.c_str();
name1=p->student.name.c_str();
chinese=p->student.chinese.c_str();
math=p->student.math.c_str();
english=p->student.english.c_str();
physic=p->student.physic.c_str();
chemical=p->student.chemical.c_str();
MessageBox(_T("序号:")+num1+_T('\n')
+_T("学号:")+xuehao1+_T('\n')
+_T("名字:")+name1+_T('\n')
+_T("语文:")+chinese+_T('\n')
+_T("数学:")+math+_T('\n')
+_T("英语:")+english+_T('\n')
+_T("物理:")+physic+_T('\n')
+_T("化学:")+chemical+_T('\n'),_T("系统消息"),MB_ICONASTERISK);
DD.MakeEmpty();}
// TODO: 在此添加控件通知处理程序代码
}


主要两点:CString和string类型的转换,string->CString:CString str; string b="dhaksjhkd" ;   str=b.c_str();

MessageBox的使用规则,具体见上,不再赘述。


同样,删除:新建对话框,和上述类似,按名字删除和按学号删除

新建类CDlg_remove,两个变量xuehao1,name1;在主对话框中在查找按钮的对应的程序中将按钮和子对话框连接起来,同样记得包含头文件#include"Dlg_remove",代码如下:

void CDlg::OnBnClickedButton1()
{
CDlg_remove removedata;
removedata.DoModal();
// TODO: 在此添加控件通知处理程序代码
}

然后双击对话框两个按钮,按名字删除和按学号删除:代码如下

void CDlg_remove::OnBnClickedButton1()
{
UpdateData(TRUE);
string a=xuehao1.GetBuffer();
List DA;
DA.inputfile();
if(DA.Remove2(a))
{
MessageBox(_T("已删除!"),_T("系统消息"),MB_ICONASTERISK);
}
else
{
MessageBox(_T("无此人信息,请检查输入是否错误!"),_T("系统消息"),MB_ICONEXCLAMATION);
}
DA.exportfile();
DA.MakeEmpty();
// TODO: 在此添加控件通知处理程序代码
}




void CDlg_remove::OnBnClickedButton4()
{
UpdateData(TRUE);
string a =name1.GetBuffer();
List DB;
DB.inputfile();
if(DB.Remove1(a))
{
MessageBox(_T("已删除!"),_T("系统消息"),MB_ICONASTERISK);
}
else
{
MessageBox(_T("无此人信息,请检查输入是否错误!"),_T("系统消息"),MB_ICONEXCLAMATION);
}
DB.exportfile();
// TODO: 在此添加控件通知处理程序代码
}

类似的方法,下面只说结构和代码:

添加按钮:有序号,学号,名字,五门成绩还有位置9个编辑框,9个静态文本,一个按钮

添加类添加变量……等等等等,类似上面

void CDlg_adddata::OnBnClickedButton1()
{
UpdateData(TRUE);
List DE;
DE.inputfile();
stinfo A;
A.num=num3.GetBuffer();
A.name=name3.GetBuffer();
A.xuehao=xuehao3.GetBuffer();
A.chinese=chinese3.GetBuffer();
A.math=math3.GetBuffer();
A.english=english3.GetBuffer();
A.physic=physic3.GetBuffer();
A.chemical=chemical3.GetBuffer();
int a=_ttoi(position);
if(DE.Insert(A,a))
{MessageBox(_T("已添加到指定位置!"),_T("系统消息"),MB_ICONASTERISK);
}
else{
CString str;
str="已加到数据最后!";
MessageBox(_T("长度超过数据长度!")+str,_T("系统消息"),MB_ICONEXCLAMATION);}
DE.exportfile();
DE.MakeEmpty();
// TODO: 在此添加控件通知处理程序代码
}

最后修改按钮,输入学号,姓名,科目还有分数进行修改,四个编辑框,四个静态文本,一个按钮

void CDlg_changedata::OnBnClickedButton1()
{
UpdateData(TRUE);
List DF;
DF.inputfile();
string a=name4.GetBuffer();
string b=xuehao4.GetBuffer();
string c=subject.GetBuffer();
string d=grade.GetBuffer();
node *p=DF.Find1(b);
node *q=DF.Find2(a);
if(p==NULL||q==NULL)
MessageBox(_T("学号或姓名不存在,请检查!"),_T("系统消息"),MB_ICONEXCLAMATION);
else
{if(p->student.xuehao!=q->student.xuehao)
MessageBox(_T("姓名学号不是同一人,请检查"),_T("系统消息"),MB_ICONEXCLAMATION);
else
{
if(c=="语文")
{p->student.chinese=d;MessageBox(_T("已更改!"),_T("系统消息"),MB_ICONASTERISK);}
else if(c=="数学")
{p->student.math=d;MessageBox(_T("已更改!"),_T("系统消息"),MB_ICONASTERISK);}
else if(c=="英语")
{p->student.english=d;MessageBox(_T("已更改!"),_T("系统消息"),MB_ICONASTERISK);}
else if(c=="物理")
{p->student.physic=d;MessageBox(_T("已更改!"),_T("系统消息"),MB_ICONASTERISK);}
else if(c=="化学")
{p->student.chemical=d;MessageBox(_T("已更改!"),_T("系统消息"),MB_ICONASTERISK);}
else
MessageBox(_T("输入科目不存在,应为语文、数学、英语、物理和化学"),_T("系统消息"),MB_ICONEXCLAMATION);
DF.exportfile();
}
DF.MakeEmpty();}
// TODO: 在此添加控件通知处理程序代码
}

然后,顺便贴一下我自己编辑的链表类和对应的cpp文件代码:

//lianbiao.h

#include <iostream>
#include <string>
#include <fstream>
using namespace std;


struct stinfo
{
string num;
string xuehao;
string name;
string chinese;
string math;
string english;
string physic;
string chemical;
};


//节点类的定义
class node
{
public:
node *next;
stinfo student;
node();
node(stinfo & A,node *p);
};




//线性表的定义
class List:public node
{
node *head;
int length;
public:
List(){head=new node;length=0;}
bool Insert(stinfo A,int i);
node *Find(int i);
node *Find1(string xuehao1);
node *Find2(string name);
bool Remove1(string name1);
bool Remove2(string xuehao1);
bool changegrade1(stinfo A);
void outputdata();
void output(node *p);
bool exportfile();
bool inputfile();
bool Remove3(string name,string xuehao);
void MakeEmpty();
};


//lianbiao.cpp

#include "stdafx.h"
#include "lianbiao.h"
node::node()
{
next=NULL;
}
node::node(stinfo & A,node *p)
{
next=p;
student.chemical=A.chemical;
student.chinese=A.chinese;
student.english=A.english;
student.math=A.math;
student.name=A.name;
student.physic=A.physic;
student.xuehao=A.xuehao;
student.num=A.num;

}

//删除函数3
bool List::Remove3(string name,string xuehao)
{
node *p=head,*q;
int a=0;
while(p->next!=NULL)
{
q=p;
p=p->next;
if(p->student.name==name&&p->student.xuehao==xuehao)
{a=1;break;}
}
if(a==0)
return false;
else 
{
q->next=p->next;
delete p;
length--;
return true;
}
}
//在第i个位置增加结点
bool List::Insert(stinfo A,int i)
{
node *p=Find(i-1);
if (p==NULL) 
{
node *p=head;
while(p->next!=NULL)
p=p->next;
node *newnode=new node(A,p->next);
p->next=newnode;
length++;
return false;}
else{
node *newnode=new node(A,p->next);
p->next=newnode;
length++;
return true;}
}
//找到第i个结点的位置
node* List::Find(int i)
{
if(i<0)return NULL;
if (i==0) return head;
node *p=head->next;
int j=1;
while(p!=NULL&&j<i)
{
p=p->next;
j++;
}
return p;
}
//找到对应学号的结点位置
node *List::Find1(string xuehao1)
{
node *p=head->next;
while(p!=NULL&&p->student.xuehao!=xuehao1)
{
p=p->next;
}
return p;
}
//找到对应名字的结点位置
node *List::Find2(string name)
{
node *p=head->next;
while(p!=NULL && p->student.name!=name)
{
p=p->next;
}
return p;
}
//根据学生名字消除信息
bool List::Remove1(string name)
{
node *p=head,*q;
int a=0;
while(p->next!=NULL)
{
if(p->next->student.name==name)
{
a=1;
break;
}
p=p->next;

}
if(a==0)
return false;
else
{
q=p->next;
p->next=q->next;
delete q;
length--;
return true;}
}
//根据学生学号消除信息
bool List::Remove2(string xuehao1)
{
node *p=head,*q;
int a=0;
while(p->next!=NULL)
{
if(p->next->student.xuehao==xuehao1)
{
a=1;
break;
}
p=p->next;
}
if(a==0)
return false;
else{
q=p->next;
p->next=q->next;
delete q;
length--;
return true;}
}
//输出所有的信息
void List::outputdata()
{
node *p=head;
while(p->next!=NULL)
{
p=p->next;
cout<<p->student.num<<" "<<p->student.xuehao<<" "<<p->student.name<<" "<<p->student.chinese<<" ";
cout<<p->student.math<<" "<<p->student.english<<" "<<p->student.physic<<" ";
cout<<p->student.chemical<<endl;
}
}
//输出某个结点的信息
void List::output(node *p)
{
cout<<p->student.num<<" "<<p->student.xuehao<<" "<<p->student.name<<" "<<p->student.chinese<<" ";
cout<<p->student.math<<" "<<p->student.english<<" "<<p->student.physic<<" ";
cout<<p->student.chemical<<endl;
}
//输出数据到文件
bool List::exportfile()
{
node *p=head;
ofstream outfile("stu.txt");
if(!outfile)
{
cerr<<"open error"<<endl;
abort();
}
while(p->next!=NULL)
{
p=p->next;
outfile<<p->student.num<<" "<<p->student.xuehao<<" "<<p->student.name<<" "<<p->student.chinese<<" ";
outfile<<p->student.math<<" "<<p->student.english<<" "<<p->student.physic<<" ";
if(p->next!=NULL)
outfile<<p->student.chemical<<endl;
else
outfile<<p->student.chemical;
}
outfile.close();
return true;
}
//输入数据到链表
bool List::inputfile()
{
node *p=head;
char ch;
fstream infile;
infile.open("stu.txt");
if(!infile)
{
cerr<<"open error"<<endl;
abort();
}
while(infile)
{
node *q=new node;
p->next=q;
p=p->next;
infile>>p->student.num>>p->student.xuehao>>p->student.name>>p->student.chinese;
infile>>p->student.math>>p->student.english>>p->student.physic;
infile>>p->student.chemical;
infile.get(ch);
}
infile.close();
return true;
}
//修改学生成绩
bool List::changegrade1(stinfo A)
{
node *p=head;
node *q;
q=Find2(A.name);
int i=0;
while(p->next!=NULL)
{
p=p->next;i++;
if(p->student.name==A.name)
break;
}
Remove2(A.xuehao);
Insert(A,i);
return true;
}
//清空函数
void List::MakeEmpty()
{
node *p=head->next;
int i=1;
while(i++<length)
{
head->next=p->next;
delete p;
}
length=0;
}

将下面的八进制字符串转换为 ASCII 字符和十六进制,采用C++实现 v642 = "\\355\\345\\011\\015\\017\\011\\001\\005\\007\\015"; v641 = "\\355\\345\\011\\015\\017\\011\\001\\005\\007\\005"; v640 = "\\355\\345\\011\\015\\017\\011\\001\\005\\007\\017"; v639 = "\\355\\345\\011\\015\\017\\011\\001\\005\\007\\010"; v638 = "\\355\\345\\011\\015\\017\\011\\001\\005\\010\\011"; v637 = "\\355\\345\\011\\015\\017\\011\\001\\005\\010\\005"; v636 = "\\355\\345\\011\\015\\017\\011\\001\\005\\010\\017"; v635 = "\\355\\345\\011\\015\\017\\011\\001\\005\\010\\010"; v634 = "\\355\\345\\011\\015\\017\\011\\001\\005\\010\\251"; v633 = "\\355\\345\\011\\015\\017\\011\\001\\017\\011\\011"; v632 = "\\355\\345\\011\\015\\017\\011\\001\\017\\011\\013"; v631 = "\\355\\345\\011\\015\\017\\011\\001\\017\\011\\003"; v630 = "\\355\\345\\011\\015\\017\\011\\001\\017\\011\\005"; v629 = "\\355\\345\\011\\015\\017\\011\\001\\017\\011\\017"; v628 = "\\355\\345\\011\\015\\017\\011\\001\\017\\011\\007"; v627 = "\\355\\345\\011\\015\\017\\011\\001\\017\\011\\010"; v626 = "\\355\\345\\011\\015\\017\\011\\001\\017\\011\\251"; v625 = "\\355\\345\\011\\015\\017\\011\\001\\017\\001\\011"; v624 = "\\355\\345\\011\\015\\017\\011\\001\\017\\001\\001"; v623 = "\\355\\345\\011\\015\\017\\011\\001\\017\\001\\013"; v622 = "\\355\\345\\011\\015\\017\\011\\001\\017\\001\\003"; v621 = "\\355\\345\\011\\015\\017\\011\\001\\017\\001\\015"; v620 = "\\355\\345\\011\\015\\017\\011\\001\\017\\001\\005"; v619 = "\\355\\345\\011\\015\\017\\011\\001\\017\\001\\010"; v618 = "\\355\\345\\011\\015\\017\\011\\001\\017\\001\\251"; v617 = "\\355\\345\\011\\015\\017\\011\\001\\017\\013\\013"; v616 = "\\355\\345\\011\\015\\017\\011\\001\\017\\013\\003"; v615 = "\\355\\345\\011\\015\\017\\011\\001\\017\\013\\015"; v614 = "\\355\\345\\011\\015\\017\\011\\001\\017\\013\\005"; v613 = "\\355\\345\\011\\015\\017\\011\\001\\017\\013\\017"; v612 = "\\355\\345\\011\\015\\017\\011\\001\\017\\013\\007"; v611 = "\\355\\345\\011\\015\\017\\011\\001\\017\\013\\010"; v610 = "\\355\\345\\011\\015\\017\\011\\001\\017\\013\\251"; v609 = "\\355\\345\\011\\015\\017\\011\\001\\017\\003\\011"; v608 = "\\355\\345\\011\\015\\017\\011\\001\\017\\003\\001"; v607 = "\\355\\345\\011\\015\\017\\011\\001\\017\\003\\013"; v606 = "\\355\\345\\011\\015\\017\\011\\001\\017\\003\\003"; v605 = "\\355\\345\\011\\015\\017\\011\\001\\017\\003\\015"; v604 = "\\355\\345\\011\\015\\017\\011\\001\\017\\003\\017"; v603 = "\\355\\345\\011\\015\\017\\011\\001\\017\\003\\007"; v602 = "\\355\\345\\011\\015\\017\\011\\001\\017\\003\\010"; v601 = "\\355\\345\\011\\015\\017\\011\\001\\017\\003\\251"; v600 = "\\355\\345\\011\\015\\017\\011\\001\\017\\015\\011"; v599 = "\\355\\345\\011\\015\\017\\011\\001\\017\\015\\001"; v598 = "\\355\\345\\011\\015\\017\\011\\001\\017\\015\\013"; v597 = "\\355\\345\\011\\015\\017\\011\\001\\017\\015\\003"; v596 = "\\355\\345\\011\\015\\017\\011\\001\\017\\015\\005"; v595 = "\\355\\345\\011\\015\\017\\011\\001\\017\\015\\017"; v594 = "\\355\\345\\011\\015\\017\\011\\001\\017\\015\\007"; v593 = "\\355\\345\\011\\015\\017\\011\\001\\017\\015\\010"; v592 = "\\355\\345\\011\\015\\017\\011\\001\\017\\015\\251"; v591 = "\\355\\345\\011\\015\\017\\011\\001\\017\\005\\011"; v590 = "\\355\\345\\011\\015\\017\\011\\001\\017\\005\\001"; v589 = "\\355\\345\\011\\015\\017\\011\\001\\017\\005\\013"; v588 = "\\355\\345\\011\\015\\017\\011\\001\\017\\005\\003"; v587 = "\\355\\345\\011\\015\\017\\011\\001\\017\\005\\005"; v586 = "\\355\\345\\011\\015\\017\\011\\001\\017\\005\\017"; v585 = "\\355\\345\\011\\015\\017\\011\\001\\017\\005\\007"; v584 = "\\355\\345\\011\\015\\017\\011\\001\\017\\005\\010"; v583 = "\\355\\345\\011\\015\\017\\011\\001\\017\\005\\251"; v582 = "\\355\\345\\011\\015\\017\\011\\001\\017\\017\\011"; v581 = "\\355\\345\\011\\015\\017\\011\\001\\017\\017\\001"; v580 = "\\355\\345\\011\\015\\017\\011\\001\\017\\017\\013"; v579 = "\\355\\345\\011\\015\\017\\011\\001\\017\\017\\003"; v578 = "\\355\\345\\011\\015\\017\\011\\001\\017\\017\\015"; v577 = "\\355\\345\\011\\015\\017\\011\\001\\017\\017\\005"; v576 = "\\355\\345\\011\\015\\017\\011\\001\\017\\017\\010"; v575 = "\\355\\345\\011\\015\\017\\011\\001\\017\\017\\251"; v574 = "\\355\\345\\011\\015\\017\\011\\001\\017\\007\\011"; v573 = "\\355\\345\\011\\015\\017\\011\\001\\017\\007\\001"; v572 = "\\355\\345\\011\\015\\017\\011\\001\\017\\007\\013"; v571 = "\\355\\345\\011\\015\\017\\011\\001\\017\\007\\003"; v570 = "\\355\\345\\011\\015\\017\\011\\001\\017\\007\\005"; v569 = "\\355\\345\\011\\015\\017\\011\\001\\017\\007\\017"; v568 = "\\355\\345\\011\\015\\017\\011\\001\\017\\007\\007"; v567 = "\\355\\345\\011\\015\\017\\011\\001\\017\\007\\010"; v566 = "\\355\\345\\011\\015\\017\\011\\001\\017\\010\\011"; v565 = "\\355\\345\\011\\015\\017\\011\\001\\017\\010\\001"; v564 = "\\355\\345\\011\\015\\017\\011\\001\\017\\010\\013"; v563 = "\\355\\345\\011\\015\\017\\011\\001\\017\\010\\003"; v562 = "\\355\\345\\011\\015\\017\\011\\001\\017\\010\\005"; v561 = "\\355\\345\\011\\015\\017\\011\\001\\017\\010\\017"; v560 = "\\355\\345\\011\\015\\017\\011\\001\\017\\010\\010"; v559 = "\\355\\345\\011\\015\\017\\011\\001\\017\\010\\251"; v558 = "\\355\\345\\011\\015\\017\\011\\001\\017\\251\\003"; v557 = "\\355\\345\\011\\015\\017\\011\\001\\007\\011\\017"; v556 = "\\355\\345\\011\\015\\017\\011\\001\\007\\011\\001"; v555 = "\\355\\345\\011\\015\\017\\011\\001\\007\\011\\005"; v554 = "\\355\\345\\011\\015\\017\\011\\001\\007\\011\\013"; v553 = "\\355\\345\\011\\015\\017\\011\\001\\007\\011\\015"; v552 = "\\355\\345\\011\\015\\017\\011\\001\\007\\011\\007"; v551 = "\\355\\345\\011\\015\\017\\011\\001\\007\\011\\010"; v550 = "\\355\\345\\011\\015\\017\\011\\001\\007\\011\\251"; v549 = "\\355\\345\\011\\015\\017\\011\\001\\007\\001\\001"; v548 = "\\355\\345\\011\\015\\017\\011\\001\\007\\001\\013"; v547 = "\\355\\345\\011\\015\\017\\011\\001\\007\\001\\003"; v546 = "\\355\\345\\011\\015\\017\\011\\001\\007\\001\\015"; v545 = "\\355\\345\\011\\015\\017\\011\\001\\007\\001\\005"; v544 = "\\355\\345\\011\\015\\017\\011\\001\\007\\001\\017"; v543 = "\\355\\345\\011\\015\\017\\011\\001\\007\\013\\011"; v542 = "\\001\\005\\013\\007"; v541 = "\\001\\001\\015\\005"; v540 = "\\001\\001\\003\\017"; v539 = "\\001\\005\\013\\003"; v538 = "\\001\\005\\013\\015"; v537 = "\\001\\251\\001"; v536 = "\\013\\010\\015"; v535 = "\\013\\251\\003"; v534 = "\\013\\010\\011"; v533 = "\\013\\251\\013"; v532 = "\\001\\005\\013\\010"; v531 = "\\001\\015\\007\\017"; v530 = "\\001\\005\\013\\017"; v529 = "\\013\\010\\013"; v528 = "\\013\\010\\007"; v527 = "\\013\\010\\017"; v526 = "\\013\\010\\001"; v525 = "\\013\\251\\251"; v524 = "\\003\\011\\007"; v523 = "\\003\\013\\013"; v522 = "\\001\\005\\007\\251"; v521 = "\\013\\010\\005"; v520 = "\\013\\251\\013"; v519 = "\\003\\011\\015"; v518 = "\\013\\010\\005"; v517 = "\\003\\011\\001"; v516 = "\\001\\015\\001"; v515 = "\\003\\011\\013"; v514 = "\\001\\015\\011"; v513 = "\\003\\005\\017"; v512 = "\\001\\015\\003"; v511 = "\\003\\005\\015"; v510 = "\\001\\015\\013"; v509 = "\\003\\005\\007"; v508 = "\\001\\005\\005\\007"; v507 = "\\003\\013\\007"; v506 = "\\013\\015\\011"; v505 = "\\003\\013\\017"; v504 = "\\013\\017\\010"; v503 = "\\001\\001\\010\\010"; v502 = "\\003\\013\\003"; v501 = "\\013\\017\\005"; v500 = "\\013\\001\\010"; v499 = "\\001\\017\\011"; v498 = "\\013\\017\\015"; v497 = "\\001\\001\\017\\010"; v496 = "\\003\\013\\005"; v495 = "\\013\\017\\005"; v494 = "\\001\\017\\001\\011"; v493 = "\\003\\007\\013"; v492 = "\\013\\005\\017"; v491 = "\\001\\017\\001\\001"; v490 = "\\003\\007\\015"; v489 = "\\013\\017\\013"; v488 = "\\001\\017\\001\\013"; v487 = "\\003\\007\\005"; v486 = "\\013\\005\\007"; v485 = "\\001\\017\\013\\011"; v484 = "\\003\\007\\017"; v483 = "\\013\\017\\001"; v482 = "\\001\\017\\013\\001"; v481 = "\\003\\007\\001"; v480 = "\\013\\015\\011"; v479 = "\\001\\017\\013\\013"; v478 = "\\003\\013\\011"; v477 = "\\013\\001\\001"; v476 = "\\001\\013\\001\\017"; v475 = "\\003\\011\\003"; v474 = "\\015\\013\\013"; v473 = "\\001\\013\\001\\003"; v472 = "\\003\\011\\005"; v471 = "\\015\\013\\251"; v470 = "\\001\\013\\011\\251"; v469 = "\\003\\003\\011"; v468 = "\\001\\001\\010\\010"; v467 = "\\013\\015\\011"; v466 = "\\003\\011\\013"; v465 = "\\001\\005\\007\\251"; v464 = "\\013\\013\\001"; v463 = "\\003\\015\\001"; v462 = "\\013\\015\\015"; v461 = "\\001\\001\\007\\011"; v460 = "\\003\\015\\011"; v459 = "\\013\\001\\010"; v458 = "\\001\\001\\017\\011"; v457 = "\\003\\015\\013"; v456 = "\\015\\013\\017"; v455 = "\\001\\001\\017\\010"; v454 = "\\003\\005\\017"; v453 = "\\013\\015\\017"; v452 = "\\001\\001\\251"; v451 = "\\003\\015\\007"; v450 = "\\015\\001\\007"; v449 = "\\013\\013\\001"; v448 = "\\001\\001\\003\\007"; v447 = "\\003\\013\\011"; v446 = "\\013\\013\\007"; v445 = "\\001\\007\\005"; v444 = "\\003\\013\\003"; v443 = "\\013\\013\\005"; v442 = "\\015\\013\\013"; v441 = "\\015\\013\\251"; v440 = "\\001\\005\\005\\007"; v439 = "\\015\\013\\005"; v438 = "\\015\\001\\015"; v437 = "\\013\\015\\011"; v436 = "\\001\\001\\010\\005"; v435 = "\\015\\013\\015"; v434 = "\\003\\011\\015"; v433 = "\\013\\015\\013"; v432 = "\\001\\001\\010\\015"; v431 = "\\003\\011\\017"; v430 = "\\013\\015\\001"; v429 = "\\001\\001\\010\\007"; v428 = "\\001\\005\\013\\007"; v427 = "\\001\\251\\001"; v426 = "\\013\\010\\017"; v425 = "\\001\\005\\013\\003"; v424 = "\\013\\010\\003"; v423 = "\\001\\005\\013\\015"; v422 = "\\013\\251\\251"; v421 = "\\003\\011\\003"; v420 = "\\001\\013\\001\\011"; v419 = "\\003\\001\\013"; v418 = "\\013\\010\\251"; v417 = "\\001\\013\\001\\001"; v416 = "\\003\\001\\011"; v415 = "\\015\\001\\003"; v414 = "\\001\\013\\011\\017"; v413 = "\\015\\001\\013"; v412 = "\\001\\001\\003\\007"; v411 = "\\003\\013\\011"; v410 = "\\001\\001\\010\\005"; v409 = "\\015\\015\\013"; v408 = "\\001\\001\\010\\017"; v407 = "\\003\\001\\011"; v406 = "\\013\\013\\001"; v405 = "\\001\\001\\010\\003"; v404 = "\\003\\001\\013"; v403 = "\\013\\001\\001"; v402 = "\\001\\001\\003\\007"; v401 = "\\003\\001\\001"; v400 = "\\013\\013\\007"; v399 = "\\001\\001\\003\\017"; v398 = "\\003\\013\\001"; v397 = "\\013\\001\\005"; v396 = "\\001\\001\\003\\005"; v395 = "\\003\\001\\005"; v394 = "\\013\\013\\005"; v393 = "\\001\\001\\003\\013"; v392 = "\\003\\001\\017"; v391 = "\\013\\013\\003"; v390 = "\\001\\001\\001\\015"; v389 = "\\003\\013\\017"; v388 = "\\013\\001\\010"; v387 = "\\001\\001\\001\\003"; v386 = "\\003\\001\\015"; v385 = "\\013\\015\\015"; v384 = "\\001\\001\\001\\013"; v383 = "\\003\\011\\017"; v382 = "\\013\\017\\010"; v381 = "\\001\\001\\001\\005"; v380 = "\\003\\011\\005"; v379 = "\\013\\017\\005"; v378 = "\\001\\005\\001\\011"; v377 = "\\003\\015\\011"; v376 = "\\013\\005\\017"; v375 = "\\001\\005\\001\\001"; v374 = "\\003\\015\\001"; v373 = "\\013\\005\\007"; v372 = "\\001\\005\\001\\013"; v371 = "\\003\\015\\013"; v370 = "\\013\\005\\015"; v369 = "\\001\\005\\001\\005"; v368 = "\\003\\005\\017"; v367 = "\\013\\005\\001"; v366 = "\\001\\005\\001\\017"; v365 = "\\003\\005\\005"; v364 = "\\013\\005\\013"; v363 = "\\001\\005\\003"; v362 = "\\003\\017\\251"; v361 = "\\001\\010\\251"; v360 = "\\003\\017\\007"; v359 = "\\001\\010\\013"; v358 = "\\003\\017\\015"; v357 = "\\001\\010\\007"; v356 = "\\003\\017\\013"; v355 = "\\001\\010\\001"; v354 = "\\003\\017\\005"; v353 = "\\001\\010\\015"; v352 = "\\003\\005\\015"; v351 = "\\013\\010\\251"; v350 = "\\001\\010\\011"; v349 = "\\003\\005\\001"; v348 = "\\013\\010\\005"; v347 = "\\001\\010\\017"; v346 = "\\003\\005\\003"; v345 = "\\013\\010\\007"; v344 = "\\001\\010\\005"; v343 = "\\003\\005\\010"; v342 = "\\013\\001\\001"; v341 = "\\001\\010\\007"; v340 = "\\003\\005\\007"; v339 = "\\013\\001\\005"; v338 = "\\001\\010\\017"; v337 = "\\003\\005\\015"; v336 = "\\013\\001\\015"; v335 = "\\001\\010\\003"; v334 = "\\003\\017\\011"; v333 = "\\013\\001\\003"; v332 = "\\001\\005\\007\\011"; v331 = "\\003\\017\\015"; v330 = "\\013\\001\\013"; v329 = "\\001\\005\\007\\001"; v328 = "\\003\\017\\005"; v327 = "\\013\\001\\017"; v326 = "\\001\\005\\007\\015"; v325 = "\\003\\005\\001"; v324 = "\\013\\001\\001"; v323 = "\\001\\005\\015\\003"; v322 = "\\003\\013\\005"; v321 = "\\013\\001\\011"; v320 = "\\001\\005\\015\\013"; v319 = "\\003\\013\\015"; v318 = "\\013\\001\\007"; v317 = "\\001\\005\\015\\005"; v316 = "\\003\\013\\007"; v315 = "\\013\\001\\017"; v314 = "\\001\\005\\015\\017"; v313 = "\\003\\013\\017"; v312 = "\\013\\001\\011"; v311 = "\\001\\005\\015\\007"; v310 = "\\003\\013\\001"; v309 = "\\013\\001\\003"; v308 = "\\001\\005\\015\\015"; v307 = "\\003\\005\\017"; v306 = "\\013\\001\\015"; v305 = "\\001\\005\\015\\001"; v304 = "\\003\\005\\013"; v303 = "\\013\\001\\001"; v302 = "\\001\\005\\015\\017"; v301 = "\\003\\005\\007"; v300 = "\\013\\001\\007"; v299 = "\\001\\005\\015\\005"; v298 = "\\003\\005\\011"; v297 = "\\013\\001\\011"; v296 = "\\001\\005\\015\\013"; v295 = "\\003\\005\\001"; v294 = "\\013\\001\\017"; v293 = "\\001\\005\\015\\017"; v292 = "\\003\\017\\011"; v291 = "\\013\\015\\017"; v290 = "\\001\\005\\015\\011"; v289 = "\\003\\017\\001"; v288 = "\\013\\015\\001"; v287 = "\\001\\005\\015\\015"; v286 = "\\003\\017\\013"; v285 = "\\013\\015\\011"; v284 = "\\001\\005\\015\\005"; v283 = "\\003\\017\\005"; v282 = "\\013\\015\\003"; v281 = "\\001\\005\\015\\017"; v280 = "\\003\\017\\003"; v279 = "\\013\\015\\015"; v278 = "\\001\\005\\015\\007"; v277 = "\\003\\017\\015"; v276 = "\\013\\015\\005"; v275 = "\\001\\005\\015\\013"; v274 = "\\003\\017\\017"; v273 = "\\013\\015\\013"; v272 = "\\001\\005\\015\\001"; v271 = "\\003\\017\\007"; v270 = "\\013\\015\\007"; v269 = "\\001\\005\\015\\011"; v268 = "\\003\\017\\010"; v267 = "\\013\\015\\010"; v266 = "\\001\\005\\015\\003"; v265 = "\\003\\017\\001"; v264 = "\\013\\015\\001"; v263 = "\\001\\005\\015\\015"; v262 = "\\003\\017\\015"; v261 = "\\013\\015\\017"; v260 = "\\001\\005\\015\\005"; v259 = "\\003\\017\\005"; v258 = "\\013\\015\\011"; v257 = "\\001\\005\\015\\017"; v256 = "\\003\\017\\003"; v255 = "\\013\\015\\011"; v254 = "\\001\\005\\015\\007"; v253 = "\\003\\017\\017"; v252 = "\\013\\015\\015"; v251 = "\\001\\005\\015\\017"; v250 = "\\003\\017\\013"; v249 = "\\013\\015\\017"; v248 = "\\001\\005\\015\\003"; v247 = "\\003\\017\\015"; v246 = "\\013\\015\\003"; v245 = "\\001\\005\\015\\001"; v244 = "\\003\\017\\007"; v243 = "\\013\\015\\005"; v242 = "\\001\\005\\015\\013"; v241 = "\\003\\017\\001"; v240 = "\\013\\015\\013"; v239 = "\\001\\005\\015\\015"; v238 = "\\003\\017\\017"; v237 = "\\013\\015\\011"; v236 = "\\001\\005\\015\\007"; v235 = "\\003\\017\\011"; v234 = "\\013\\015\\007"; v233 = "\\001\\005\\015\\017"; v232 = "\\003\\017\\007"; v231 = "\\013\\015\\017"; v230 = "\\001\\005\\015\\005"; v229 = "\\003\\017\\017"; v228 = "\\013\\015\\005"; v227 = "\\001\\005\\015\\003"; v226 = "\\003\\017\\001"; v225 = "\\013\\015\\003"; v224 = "\\001\\005\\015\\015"; v223 = "\\003\\017\\015"; v222 = "\\013\\015\\005"; v221 = "\\001\\005\\015\\001"; v220 = "\\003\\017\\013"; v219 = "\\013\\015\\013"; v218 = "\\001\\005\\015\\011"; v217 = "\\003\\017\\015"; v216 = "\\013\\015\\015";
最新发布
09-02
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值