摘要: #include <windows.h>#include <iostream>#include <stdlib.h>#define MAXBUFFER 10#define MAXLISTSIZE 100 //预设的存储空间最大容量using namespace std; typedef struct 阅读全文
posted @ 2017-11-04 13:59 我为恬恬上青铜 阅读(2637) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <stdlib.h>using namespace std; typedef struct LNode{ float coef; //系数 int expn; //指数 struct LNode *next; //指针域}LNode, *SLi 阅读全文
posted @ 2017-11-04 13:58 我为恬恬上青铜 阅读(1945) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <stdlib.h>#include <string.h>#define INFINITY 1000 //最大值∞#define MAX_VERTEX_NUM 20 //最大顶点个数#define MAXLISTSIZE 100 //循环队列的 阅读全文
posted @ 2017-11-04 13:57 我为恬恬上青铜 阅读(785) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <windows.h>#include <stdlib.h>#include <string.h>#define MAXLISTSIZE 100 //预设的存储空间最大容量#define FALSE 0#define TRUE 1using n 阅读全文
posted @ 2017-11-04 13:56 我为恬恬上青铜 阅读(345) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <stdlib.h>#include <string>#define MAXLISTSIZE 100 //预设的存储空间最大容量 using namespace std;typedef string ElemType;typedef struc 阅读全文
posted @ 2017-11-04 13:54 我为恬恬上青铜 阅读(401) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <stdlib.h>#define MAXLISTSIZE 100 //预设的存储空间最大容量using namespace std; typedef string ElemType;typedef struct{ ElemType *base 阅读全文
posted @ 2017-11-04 13:51 我为恬恬上青铜 阅读(282) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <stdlib.h>using namespace std; typedef string ElemType;typedef struct LNode{ ElemType data; //数据域 struct LNode *next; //指针 阅读全文
posted @ 2017-11-04 13:49 我为恬恬上青铜 阅读(550) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <stdlib.h>#define MAXLISTSIZE 100 //预设的存储空间最大容量 using namespace std; typedef string ElemType;typedef struct{ ElemType *ele 阅读全文
posted @ 2017-11-04 13:47 我为恬恬上青铜 阅读(585) 评论(0) 推荐(0) 编辑
摘要: 恢复内容开始 一、开始启程--你的第一行Android代码 Android的四层架构 1.linux内核层--为Android设备的各种硬件提供底层驱动 2.系统运行库层--通过一些C/C++库来为Android系统提供主要的特性支持 Android运行时库,提供一些核心库,允许开发者使用java语 阅读全文
posted @ 2017-03-19 11:17 我为恬恬上青铜 阅读(1123) 评论(0) 推荐(0) 编辑
摘要: startservice 方式开启服务 服务就会在后台长期运行 直到用户手工停止 或者调用StopService方法 服务才会被销毁 bindService 方式开启服务 当activity销毁的时候服务也销毁 不求同时生但求同时死 4.0以后。服务第一次启动必须有界面 电话窃听qi案例 new T 阅读全文
posted @ 2017-03-02 20:17 我为恬恬上青铜 阅读(331) 评论(0) 推荐(0) 编辑