6-51 逆序数据建立链表 分数 20
本题要求实现一个函数,按输入数据的逆序建立一个链表。
函数接口定义:
struct ListNode *createlist();
函数createlist
利用scanf
从输入中获取一系列正整数,当读到−1时表示输入结束。按输入数据的逆序建立一个链表,并返回链表头指针。链表节点结构定义如下:
struct ListNode {
int data;
struct ListNode *next;
};
裁判测试程序样例:
#include <stdio.h>
#include <stdlib.h>
struct ListNode {
int data;
struct ListNode *next;
};
struct ListNode *createlist();
int main()
{
struct ListNode *p, *head = NULL;
head = createlist();
for ( p = head; p != NULL; p = p->next )
printf("%d ", p->data);
printf("\n");
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
1 2 3 4 5 6 7 -1
输出样例:
7 6 5 4 3 2 1
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
typedef struct ListNode list;
list* createlist()
{
list* hd = malloc(sizeof(list));
hd->next = NULL;
int e;
while(scanf("%d", &e), e != -1)
{
list* node = malloc(sizeof(list));
node->data = e;
node->next = hd->next;
hd->next = node;
}
return hd->next;
}
6-52 链表拼接 分数 20
本题要求实现一个合并两个有序链表的简单函数。链表结点定义如下:
struct ListNode {
int data;
struct ListNode *next;
};
函数接口定义:
struct ListNode *mergelists(struct ListNode *list1, struct ListNode *list2);
其中list1
和list2
是用户传入的两个按data
升序链接的链表的头指针;函数mergelists
将两个链表合并成一个按data
升序链接的链表,并返回结果链表的头指针。
裁判测试程序样例:
#include <stdio.h>
#include <stdlib.h>
struct ListNode {
int data;
struct ListNode *next;
};
struct ListNode *createlist(); /*裁判实现,细节不表*/
struct ListNode *mergelists(struct ListNode *list1, struct ListNode *list2);
void printlist( struct ListNode *head )
{
struct ListNode *p = head;
while (p) {
printf("%d ", p->data);
p = p->next;
}
printf("\n");
}
int main()
{
struct ListNode *list1, *list2;
list1 = createlist();
list2 = createlist();
list1 = mergelists(list1, list2);
printlist(list1);
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
1 3 5 7 -1
2 4 6 -1
输出样例:
1 2 3 4 5 6 7
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
typedef struct ListNode list;
list* mergelists(list* list1, list* list2)
{
list* hd = malloc(sizeof(list)); hd->next = NULL;
list* node1 = list1, *node2 = list2, *node = hd;
while(node1 && node2)
{
if(node1->data < node2->data) node->next = node1, node1 = node1->next;
else node->next = node2, node2 = node2->next;
node = node->next;
}
while(node1) node->next = node1, node1 = node1->next, node = node->next;
while(node2) node->next = node2, node2 = node2->next, node = node->next;
node->next = NULL;
return hd->next;
}
6-53 奇数值结点链表 分数 20
本题要求实现两个函数,分别将读入的数据存储为单链表、将链表中奇数值的结点重新组成一个新的链表。链表结点定义如下:
struct ListNode {
int data;
ListNode *next;
};
函数接口定义:
struct ListNode *readlist(); struct ListNode *getodd( struct ListNode **L );
函数readlist
从标准输入读入一系列正整数,按照读入顺序建立单链表。当读到−1时表示输入结束,函数应返回指向单链表头结点的指针。
函数getodd
将单链表L
中奇数值的结点分离出来,重新组成一个新的链表。返回指向新链表头结点的指针,同时将L
中存储的地址改为删除了奇数值结点后的链表的头结点地址(所以要传入L
的指针)。
裁判测试程序样例:
#include <stdio.h>
#include <stdlib.h>
struct ListNode {
int data;
struct ListNode *next;
};
struct ListNode *readlist();
struct ListNode *getodd( struct ListNode **L );
void printlist( struct ListNode *L )
{
struct ListNode *p = L;
while (p) {
printf("%d ", p->data);
p = p->next;
}
printf("\n");
}
int main()
{
struct ListNode *L, *Odd;
L = readlist();
Odd = getodd(&L);
printlist(Odd);
printlist(L);
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
1 2 2 3 4 5 6 7 -1
输出样例:
1 3 5 7
2 2 4 6
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
typedef struct ListNode list;
list* readlist()
{
int e;
list* hd = NULL, *tail = NULL;
while(scanf("%d", &e), e != -1)
{
list* node = malloc(sizeof(list));
node->data = e;
if(!hd) hd = tail = node;
else
{
tail->next = node;
tail = node;
}
}
return hd;
}
list* getodd(list** L)
{
list* ans = malloc(sizeof(list)); ans->next = NULL;
list* odd = malloc(sizeof(list)); odd->next = *L;
list* hd = *L, *nd = ans;
for(list* node = hd, *pd = odd; node; )
{
if(node->data % 2)
{
nd->next = node;
nd = nd->next;
pd->next = node->next;
node = node->next;
}
else
{
node = node->next;
pd = pd->next;
}
}
nd->next = NULL;
*L = odd->next;
return ans->next;
}
6-54 单链表结点删除 分数 20
本题要求实现两个函数,分别将读入的数据存储为单链表、将链表中所有存储了某给定值的结点删除。链表结点定义如下:
struct ListNode {
int data;
ListNode *next;
};
函数接口定义:
struct ListNode *readlist();
struct ListNode *deletem( struct ListNode *L, int m );
函数readlist
从标准输入读入一系列正整数,按照读入顺序建立单链表。当读到−1时表示输入结束,函数应返回指向单链表头结点的指针。
函数deletem
将单链表L
中所有存储了m
的结点删除。返回指向结果链表头结点的指针。
裁判测试程序样例:
#include <stdio.h>
#include <stdlib.h>
struct ListNode {
int data;
struct ListNode *next;
};
struct ListNode *readlist();
struct ListNode *deletem( struct ListNode *L, int m );
void printlist( struct ListNode *L )
{
struct ListNode *p = L;
while (p) {
printf("%d ", p->data);
p = p->next;
}
printf("\n");
}
int main()
{
int m;
struct ListNode *L = readlist();
scanf("%d", &m);
L = deletem(L, m);
printlist(L);
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
10 11 10 12 10 -1
10
输出样例:
11 12
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
typedef struct ListNode list;
list* readlist()
{
int e;
list* hd = NULL, *tail = NULL;
while(scanf("%d", &e), e != -1)
{
list* node = malloc(sizeof(list));
node->data = e;
if(!hd) hd = tail = node;
else tail->next = node, tail = node;
}
return hd;
}
list* deletem(list* L, int n)
{
list* hd = malloc(sizeof(list)); hd->next = L;
for(list* p = hd, *node = L; node;)
{
if(node->data == n)
{
list* temp = node;
p->next = node->next;
node = node->next;
free(temp);
}
else
{
node = node->next;
p = p->next;
}
}
return hd->next;
}
6-55 链表逆置 分数 20
本题要求实现一个函数,将给定单向链表逆置,即表头置为表尾,表尾置为表头。链表结点定义如下:
struct ListNode {
int data;
struct ListNode *next;
};
函数接口定义:
struct ListNode *reverse( struct ListNode *head );
其中head
是用户传入的链表的头指针;函数reverse
将链表head
逆置,并返回结果链表的头指针。
裁判测试程序样例:
#include <stdio.h>
#include <stdlib.h>
struct ListNode {
int data;
struct ListNode *next;
};
struct ListNode *createlist(); /*裁判实现,细节不表*/
struct ListNode *reverse( struct ListNode *head );
void printlist( struct ListNode *head )
{
struct ListNode *p = head;
while (p) {
printf("%d ", p->data);
p = p->next;
}
printf("\n");
}
int main()
{
struct ListNode *head;
head = createlist();
head = reverse(head);
printlist(head);
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
1 2 3 4 5 6 -1
输出样例:
6 5 4 3 2 1
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
typedef struct ListNode list;
list* reverse(list* hd)
{
list* p = NULL, *node = hd;
while(node)
{
list* e = node->next;
node->next = p;
p = node, node = e;
}
return p;
}
6-56 统计专业人数 分数 15
本题要求实现一个函数,统计学生学号链表中专业为计算机的学生人数。链表结点定义如下:
struct ListNode {
char code[8];
struct ListNode *next;
};
这里学生的学号共7位数字,其中第2、3位是专业编号。计算机专业的编号为02。
函数接口定义:
int countcs( struct ListNode *head );
其中head
是用户传入的学生学号链表的头指针;函数countcs
统计并返回head
链表中专业为计算机的学生人数。
裁判测试程序样例:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct ListNode {
char code[8];
struct ListNode *next;
};
struct ListNode *createlist(); /*裁判实现,细节不表*/
int countcs( struct ListNode *head );
int main()
{
struct ListNode *head;
head = createlist();
printf("%d\n", countcs(head));
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
1021202
2022310
8102134
1030912
3110203
4021205
#
输出样例:
3
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
typedef struct ListNode list;
int countcs(list* head)
{
int cnt = 0;
for(list* node = head; node; node = node->next)
if(node->code[1] == '0' && node->code[2] == '2') cnt ++;
return cnt;
}
6-57 删除单链表偶数节点 分数 20
本题要求实现两个函数,分别将读入的数据存储为单链表、将链表中偶数值的结点删除。链表结点定义如下:
struct ListNode {
int data;
struct ListNode *next;
};
函数接口定义:
struct ListNode *createlist();
struct ListNode *deleteeven( struct ListNode *head );
函数createlist
从标准输入读入一系列正整数,按照读入顺序建立单链表。当读到−1时表示输入结束,函数应返回指向单链表头结点的指针。
函数deleteeven
将单链表head
中偶数值的结点删除,返回结果链表的头指针。
裁判测试程序样例:
#include <stdio.h>
#include <stdlib.h>
struct ListNode {
int data;
struct ListNode *next;
};
struct ListNode *createlist();
struct ListNode *deleteeven( struct ListNode *head );
void printlist( struct ListNode *head )
{
struct ListNode *p = head;
while (p) {
printf("%d ", p->data);
p = p->next;
}
printf("\n");
}
int main()
{
struct ListNode *head;
head = createlist();
head = deleteeven(head);
printlist(head);
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
1 2 2 3 4 5 6 7 -1
输出样例:
1 3 5 7
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
typedef struct ListNode list;
list* createlist()
{
int e;
list* hd = NULL, *tail = NULL;
while(scanf("%d", &e), e != -1)
{
list* node = malloc(sizeof(list));
node->data = e;
if(!hd) hd = tail = node;
else tail->next = node, tail = node;
}
return hd;
}
list* deleteeven(list* hd)
{
list* ans = malloc(sizeof(list)); ans->next = hd;
for(list* p = ans, *node = hd; node;)
if(node->data % 2 == 0)
{
list* temp = node;
p->next = node->next;
node = node->next;
free(temp);
}
else node = node->next, p = p->next;
return ans->next;
}