北京化工大学中国大学慕课C程序设计的一道oj题目

第七章第三题

题目内容:

建立长度为n的单链表A和长度为m的单链表B,n>0,m>0。编程实现将B表链接在A表的尾端,形成一个单链表A。数据类型指定为字符型。

输入格式:

第一行为A表的长度n;

第二行为A表中的数据元素;

第三行为B表的长度m;

第四行为B表中的数据元素。

输出格式:

输出为链接好后的A表中的所有数据元素。

输入样例:

4

A B C D

6

1 2 3 4 5 6

输出样例:

A B C D 1 2 3 4 5 6

#include
#include
struct oj {
	char a[10];
	struct oj*next;
};
struct oj*creat() {
	struct oj*head;
	struct oj*p1,*p2;
	int i=0,n;
	scanf("%d",&n);
	head=NULL;
	p1=p2=(struct oj*)malloc(sizeof(struct oj));
	scanf("%s",&p1->a);
	p1->next=NULL;
	head=p1;
	p2=p1;
	for(; i<n-1; i++) {
		p1=(struct oj*)malloc(sizeof(struct oj));
		scanf("%s",&p1->a);
		p2->next=p1;
		p2=p1;
	}
	scanf("%d",&n);
	for(i=0; i<n; i++) {
		p1=(struct oj*)malloc(sizeof(struct oj));
		scanf("%s",&p1->a);
		p2->next=p1;
		p2=p1;
	}
	p2->next=NULL;
	return head;
}

void printL(struct oj*head) {
	struct oj*p;
	p=head;
	while(p!=NULL) {
		printf("%s ",p->a);
		p=p->next;
	}
}
main() {
	struct oj*head;
	head=creat();
	printL(head);
}

你可能感兴趣的:(作业,慕课)