2017年6月12日
摘要: 1.冒泡排序 有大到小 void bubble(int arr[], int len){ if(arr == null || len == 0){retrun;} for (int i = 0; i<len; i++){ for(int j= 0;j<i;j++){ if(arr[i]<arr[j] 阅读全文
posted @ 2017-06-12 20:29 1018475062 阅读(134) 评论(0) 推荐(0)
摘要: List* ReverseList2(List* head){ if(NULL==head|| NULL==head->next) return head; //少于两个节点没有反转的必要。 ActList* p,* q,* r; // 通过三个指针 p = head; // 先保存head q = head->next;// 保存第二个// 这里要先处理最后一个... 阅读全文
posted @ 2017-06-12 19:44 1018475062 阅读(1081) 评论(0) 推荐(0)
摘要: He is taller than she. My wallet is more expensive than yours. more 不可以和-er 连用 This is the biggest punkin that i've ever read. He is the most careful 阅读全文
posted @ 2017-06-12 16:08 1018475062 阅读(577) 评论(0) 推荐(0)
摘要: He is a careful dirver. // 他是一个小心谨慎的司机 Listen to my carefully. // 仔细的听我说 表明动词的状态和方式 I'm terribly sorry(形容词) for being late. // 副词修饰形容词 > for late(形容词) 阅读全文
posted @ 2017-06-12 13:59 1018475062 阅读(583) 评论(0) 推荐(0)
摘要: NSURLConnection 作为 Core Foundation / CFNetwork 框架的 API 之上的一个抽象,在 2003 年,随着第一版的 Safari 的发布就发布了。NSURLConnection 这个名字,实际上是指代的 Foundation 框架的 URL 加载系统中一系列 阅读全文
posted @ 2017-06-12 09:38 1018475062 阅读(437) 评论(0) 推荐(0)