上一页 1 2 3 4 5 6 ··· 29 下一页
摘要: 思路:设置两个指针,一个指针为fast,一个指针为slow,fast的步长为2,slow的步长为1,当fast到达链表的最后节点时,slow指针所指向的就是链表的中间节点。具体代码实现: 1 LinkList *GetMidNode(LinkList *head) 2 { 3 LinkLis... 阅读全文
posted @ 2015-10-21 10:01 天天AC 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 最近,刚刚平复了自己找工作的心情,想从头把玩一番Linux的发行版,结果安装Ubuntu12.04和Ubuntu14.04过程中,出现了不能全屏的问题,以前玩的是Red hat、Kali Linux、CentOS,没碰过乌班图,结果今天对这个问题做个记录。出现问题:主要是这段话:module com... 阅读全文
posted @ 2015-10-20 14:40 天天AC 阅读(486) 评论(0) 推荐(0) 编辑
摘要: 大疆无人机笔试题,二分法求解: 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 int binarySearchKey(int *arr,int goal,int len) 7 { 8 int ... 阅读全文
posted @ 2015-10-19 08:47 天天AC 阅读(907) 评论(0) 推荐(0) 编辑
摘要: 代码: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 using namespace std; 8 9 struct Point 10 { 11 double m_x, ... 阅读全文
posted @ 2015-09-26 16:07 天天AC 阅读(615) 评论(0) 推荐(0) 编辑
摘要: 数组去重并排序思路:先去重后排序或者先排序后去重可以使用STL来求,set内部是有序的,list内部不是有序的。样例:输入:46 3 3 9输入3 6 9 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6... 阅读全文
posted @ 2015-09-20 18:34 天天AC 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 题目大意:AAA?BBB?CCC? 分成:AAA BBB CCC样例:输入: AAA?BBB?CCC? ? 2 (即输入AAA?BBB?CCC?和?和2)输出:BBB思路代码:使用strtok截取字符串,并使用一个变量计数,将计数和截取的字符串装入map中,进行遍历即可。 1 #include ... 阅读全文
posted @ 2015-09-20 18:17 天天AC 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 上代码: 1 #include 2 #include 3 using namespace std; 4 int main() 5 { 6 int i,j; 7 int a[5][5]; 8 int m = 1,k; 9 for(i = 0; i <5; ++i)1... 阅读全文
posted @ 2015-09-20 10:22 天天AC 阅读(611) 评论(0) 推荐(0) 编辑
摘要: Problem Description穿过幽谷意味着离大魔王lemon已经无限接近了!可谁能想到,yifenfei在斩杀了一些虾兵蟹将后,却再次面临命运大迷宫的考验,这是魔王lemon设下的又一个机关。要知道,不论何人,若在迷宫中被困1小时以上,则必死无疑!可怜的yifenfei为了去救MM,义无返... 阅读全文
posted @ 2015-09-19 13:38 天天AC 阅读(700) 评论(1) 推荐(0) 编辑
摘要: 今天去面试,面试官很nice,但好像感冒了,我答题过程中很不停的咳嗽,一开始自己没在状态,一上来,面试官没让我做自我介绍,感觉之前的准备白费了,以上来给了我一个试卷,3道题:第一个结构体对齐,但不单单是结构体对齐,里面包括虚函数,大概是这样子:class A{ int a; char b... 阅读全文
posted @ 2015-09-14 12:47 天天AC 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 这道题是2016美团面试题:1.给定一个数组arr,数组长度为len,求满足 0 2 #include 3 #include 4 // 解法1: 分治法(递归实现) 5 int Max_Find(int *s,int *e,int *max,int *min) 6 { 7 if(s >... 阅读全文
posted @ 2015-09-12 15:11 天天AC 阅读(718) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 29 下一页