摘要: #include using namespace std; #define SIZE 5 class complex { public: int real; int imag; public: inline int complex::operator (const complex &c) { return real > c.real; } }; ... 阅读全文
posted @ 2017-06-26 09:58 JoneZP 阅读(504) 评论(0) 推荐(0) 编辑
摘要: 通过运用ofstream和ifstream类去创建对象来进行文件读写。 使用文件流新建或打开一个文件,并写入字符串 "This is a test file". 使用文件流将创建的文件test.txt.中的所有数据读取出来。 使用ifstream类成员函数seekg,结合文件输入输出流,写的一个wa 阅读全文
posted @ 2017-06-26 09:45 JoneZP 阅读(2198) 评论(0) 推荐(0) 编辑
摘要: 转载于:http://blog.csdn.net/morewindows/article/details/6684558 该方法的基本思想是: 1.先从数列中取出一个数作为基准数。 2.分区过程,将比这个数大的数全放到它的右边,小于或等于它的数全放到它的左边。 3.再对左右区间重复第二步,直到各区间 阅读全文
posted @ 2017-06-26 09:16 JoneZP 阅读(654) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std; struct node { int data; node *pre; node *next; }; void outputList(node *); void findData(int, node*); node * insertData(int , node *); nod... 阅读全文
posted @ 2017-06-19 20:39 JoneZP 阅读(748) 评论(0) 推荐(0) 编辑
摘要: Learn: 1.Android数据库的语法。 2.通过外键连接两个数据库。 3.加强了对数据库的熟悉度。 4.对文本框的visiblity属性的了解。 Demo:http://pan.baidu.com/s/1c1OZjC8 阅读全文
posted @ 2016-04-23 21:21 JoneZP 阅读(539) 评论(0) 推荐(0) 编辑
摘要: 1575: Gingers and Mints Description fcbruce owns a farmland, the farmland has n * m grids. Some of the grids are stones, rich soil is the rest. fcbruc 阅读全文
posted @ 2016-04-18 20:50 JoneZP 阅读(247) 评论(0) 推荐(0) 编辑
摘要: Key Points: 1.使用SimpleCursorAdapter将Android数据库信息显示在listview上 2.长按listview弹出对话框删除信息。顺带学习了AlertDialog。 3.学习了Android数据库中的 ”增删改查“。 阅读全文
posted @ 2016-04-15 21:16 JoneZP 阅读(2870) 评论(0) 推荐(0) 编辑
摘要: 效果图: 学习: 1.静态注册实现开机启动 2.通知的创建 step1:需要一个NotificationManager来对通知进行管理 NotificationManager manager = (NotificationManager)context.getSystemService(androi 阅读全文
posted @ 2016-04-05 23:00 JoneZP 阅读(1261) 评论(0) 推荐(0) 编辑
摘要: 一. 需求分析 1.设计题目:车票管理系统 用JAVA语言和数据结构知识设计设计车票管理系统。要求如下所述: 一车站每天有n个发车班次,每个班次都有一个班次号(1、2、3…n),固定的发车时间,固定的路线(起始站、终点站),大致的行车时间,固定的额定载客量。如: 班次 发车时间 起点站 终点站 行车 阅读全文
posted @ 2016-03-13 10:27 JoneZP 阅读(10334) 评论(12) 推荐(1) 编辑
摘要: Palindrome Time Limit: 3000MS Memory Limit: 65536K Total Submissions: 58277 Accepted: 20221 Description A palindrome is a symmetrical string, that is, 阅读全文
posted @ 2016-03-08 15:03 JoneZP 阅读(301) 评论(0) 推荐(0) 编辑