海辉面试题
typedefine struct LNode{
Elemtype data;
struct LNode *next;
}LNode,*LinkList;
void Revers(LinkList Head){
LNode *p,*q;
p=head-> next;head-> next=NULL;
if(p) return ;
q=p-> next;
while(p-> next){
p-> next=head-> next;
head-> next=p;
p=q;
q=p-> next;
}
}
http://topic.csdn.net/u/20080420/10/d9f38de1-4695-444a-afac-31dca9a41061.html
他们设置了哪些标签:
1 C 面试 面试题
谁收藏了这个网址:
使用标签:面试,时间:2008-4-20 10:53:06 | 相关网摘
海辉面试题
时间:2008-4-20 15:22:13 | 相关网摘
组的所有子集,要求子集的所有元素和为一定值,如{1,2,3,4,5,8}有
时间:2008-4-20 18:26:10 | 相关网摘
时间:2008-4-20 18:35:24 | 相关网摘
1、实现内存拷贝函数
2、声明一个只能创建一个唯一对象的类
3、实现单链表逆置
4、找出字符串的最长子串,要求字串的所有字符相同,如:"abcdeeefgh"结果是"eee"。
5、找出数组的所有子集,要求子集的所有元素和为一定值,如{1,2,3,4,5,8}有子集{1,2,3,4}、{2,8}等。
时间:2008-4-20 20:25:03 | 相关网摘
时间:2008-4-20 21:02:41 | 相关网摘
使用标签:1,时间:2008-4-20 21:44:45 | 相关网摘
时间:2008-4-20 22:26:11 | 相关网摘
时间:2008-4-20 23:07:07 | 相关网摘
时间:2008-4-21 10:10:40 | 相关网摘
很不错的面试题.
时间:2008-4-21 10:47:24 | 相关网摘
时间:2008-4-21 11:17:56 | 相关网摘
typedefine struct LNode{
Elemtype data;
struct LNode *next;
}LNode,*LinkList;
void Revers(LinkList Head){
LNode *p,*q;
p=head-> next;head-> next=NULL;
if(p) return ;
q=p-> next;
while(p-> next){
p-> next=head-> next;
head-> next=p;
p=q;
q=p-> next;
}
}
时间:2008-4-21 12:15:50 | 相关网摘
时间:2008-4-21 12:51:31 | 相关网摘
使用标签:c,时间:2008-4-21 17:39:36 | 相关网摘
时间:2008-4-22 1:28:13 | 相关网摘
使用标签:面试题,时间:2008-4-22 1:46:13 | 相关网摘
时间:2008-4-22 12:41:14 | 相关网摘
时间:2008-4-22 12:54:57 | 相关网摘
时间:2008-4-22 15:39:29 | 相关网摘
时间:2008-4-22 15:40:54 | 相关网摘
时间:2008-4-27 12:43:58 | 相关网摘
时间:2008-5-5 21:06:19 | 相关网摘
使用标签:面试,时间:2008-5-28 14:13:41 | 相关网摘
海辉面试题
时间:2008-6-24 23:50:49 | 相关网摘