PTA习题11-7 奇数值结点链表 (20分)

PTA习题11-7 奇数值结点链表 (20分)

题目如下:
本题要求实现两个函数,分别将读入的数据存储为单链表、将链表中奇数值的结点重新组成一个新的链表。链表结点定义如下:

struct ListNode {
int data;
ListNode *next; };

函数接口定义:

struct ListNode *readlist();
struct ListNode *getodd( struct ListNode **L );

函数readlist从标准输入读入一系列正整数,按照读入顺序建立单链表。当读到−1时表示输入结束,函数应返回指向单链表头结点的指针。

函数getodd将单链表L中奇数值的结点分离出来,重新组成一个新的链表。返回指向新链表头结点的指针,同时将L中存储的地址改为删除了奇数值结点后的链表的头结点地址(所以要传入L的指针)。

裁判测试程序样例:

#include 
#include 

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 

代码如下:

struct ListNode *readlist()
{
	struct ListNode *head,*tail,*temp;		//head->头结点,tail->尾节点,temp->临时开辟结点
	tail=temp=(struct ListNode*)malloc(sizeof(struct ListNode));	//尾节点开始也指向临时开辟结点 
	head=NULL;
	int cnt=0;							//结点个数
	scanf("%d",&temp->data);
	while(temp->data!=-1)
	{
		cnt++;
		if(cnt==1)
		{
			head=temp;
		}
		else
		{
			tail->next=temp;
		}
		tail=temp;
		temp= (struct ListNode*)malloc(sizeof(struct ListNode));
		scanf("%d",&temp->data);
	}
	tail->next=NULL;
	return head;
}

struct ListNode *getodd( struct ListNode **L )		//创建两个新链表(奇偶),代码同上述创建链表函数 
{
	//struct ListNode *p = *L;
	struct ListNode *odd_head,*odd_tail,*temp;			//新的奇数链表
	struct ListNode *even_head,*even_tail;				//新的偶数链表 
	odd_tail=even_tail=temp=malloc(sizeof(struct ListNode));
	odd_head=even_head=NULL;
	int cnt1=0,cnt2=0;				//cnt1为奇数链表结点个数,cnt2为偶数链表结点个数 
	while(*L)
	{
		temp->data = (*L)->data;
		temp->next = NULL;
		if((*L)->data%2==1)			//遇到奇数结点 
		{
			cnt1++;				 
			if(cnt1==1)				//插入奇数链表 
			{
				odd_head=temp;
			}
			else
			{
				odd_tail->next=temp;
			}
			odd_tail=temp;
		}
		else
		{
			cnt2++;
			if(cnt2==1)
			{
				even_head = temp;
			}
			else
			{
				even_tail->next = temp;
			}
			even_tail = temp;
		}
		temp= (struct ListNode*)malloc(sizeof(struct ListNode));
		*L = (*L)->next;
	}
	*L = even_head;
	return odd_head;
}

你可能感兴趣的:(PTA,链表,c语言,指针,数据结构)