loseyou

导航

2015年3月5日 #

我的STL之旅 MyStack

摘要: #include#include#include#include using namespace std;/* push(int item) int pop() top() 返回stact中的下一个元素 s.top()=12; 设置顶层元素 返回对其引用 */co... 阅读全文

posted @ 2015-03-05 19:50 loseyou 阅读(138) 评论(0) 推荐(0)

我的STL之旅 MyList

摘要: #include#include#include#include//#includeusing namespace std;//only for int use;/*class MyList{ int *my; MyList(); int back();//返回最后一个元素 ... 阅读全文

posted @ 2015-03-05 17:20 loseyou 阅读(115) 评论(0) 推荐(0)

2015年3月3日 #

addresslist

摘要: #include#include#include#include#include#includeusing namespace std;//好友信息 typedef struct frie{ int num; char name[20]; char sex[4]; int y... 阅读全文

posted @ 2015-03-03 23:31 loseyou 阅读(257) 评论(0) 推荐(0)

通讯录管理系统

摘要: #include#include#include#include#include#includeusing namespace std;//好友信息 typedef struct frie{ int num; char name[20]; char sex[4]; int year,month,da... 阅读全文

posted @ 2015-03-03 23:19 loseyou 阅读(305) 评论(0) 推荐(0)