-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path返回中间节点.c
59 lines (50 loc) · 996 Bytes
/
返回中间节点.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include <stdio.h>
typedef struct Link{
int num;
struct Link* next;
}link;
link* initlink(){
int i;
link* p=NULL;
link* temp=(link*)malloc(sizeof(link));
temp->num=NULL;
temp->next=NULL;
if (temp == NULL)
{
printf("新结点创建失败\n");//malloc函数开辟空间失败
exit(-1);
}
p=temp;
for(i=0,i<5;i++){
link* a= (link*)malloc(sizeof(link));
if(temp==NULL){
printf("新节点创建失败\n");
exit(-1);
}
a->num=i;
a->next=NULL;
temp->next =a;
temp=a;
}
return p;
}
//2.链表的中间结点
//给定一个带有头结点 head 的非空单链表,返回链表的中间结点。
//如果有两个中间结点,则返回第二个中间结点。
int getlen(link* head){
int len=0;
link*p=haed;
while(p){
len++;
}
return len;
}
link* middlepointer(linl* head){
int len=getlen(head)/2;
link*p =head;
while(len>0){
p=p->next;
len--;
}
retrun p;
}