摘要: 1 #include 2 #include 3 typedef struct BITree{ 4 char data; 5 BITree *lchild; 6 BITree *rchild; 7 }BITree,*BiTree; 8 typedef struct Stack{ 9 BiTree data; 10 ... 阅读全文
posted @ 2017-05-26 20:51 LiZR07 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 原帖地址:http://www.cr173.com/html/19165_1.html 在android的设计思想中,为了确保用户顺滑的操作体验。一些耗时的任务不能够在UI线程中运行,像访问网络就属于这类任务。因此我们必须要重新开启一个后台线程运行这些任务。然而,往往这些任务最终又会直接或者间接的需 阅读全文
posted @ 2017-05-26 20:42 LiZR07 阅读(325) 评论(0) 推荐(0) 编辑