SDUT 2120 数据结构实验之链表五:单链表的拆分

本文介绍了一种将单链表按元素奇偶性拆分为两个子链表的方法,并提供了完整的C语言实现代码及解析。该算法适用于数据结构课程的学习与实践。

1.题目

数据结构实验之链表五:单链表的拆分
Time Limit: 1000 ms Memory Limit: 65536 KiB
Problem Description
输入N个整数顺序建立一个单链表,将该单链表拆分成两个子链表,第一个子链表存放了所有的偶数,第二个子链表存放了所有的奇数。两个子链表中数据的相对次序与原链表一致。
Input
第一行输入整数N;;
第二行依次输入N个整数。
Output
第一行分别输出偶数链表与奇数链表的元素个数;
第二行依次输出偶数子链表的所有数据;
第三行依次输出奇数子链表的所有数据。
Sample Input

10
1 3 22 8 15 999 9 44 6 1001

Sample Output

4 6
22 8 44 6
1 3 15 999 9 1001

Hint
不得使用数组!

2.正确代码

#include <stdio.h>
#include <stdlib.h>
struct node {
    int data;
    struct node *next;
};

struct node *create(int n)
{
    struct node *head,*tail,*p;
    head=(struct node*)malloc(sizeof(struct node));
    tail=head;

    for(int i=1;i<=n;i++)
    {
        p=(struct node*)malloc(sizeof(struct node));
        p->next=NULL;

        scanf("%d",&p->data);
        tail->next=p;
        tail=p;
    }

    return head;
}

void split(struct node *head)
{

    struct node *h1,*t1,*h2,*t2,*p;
    int k1=0,k2=0;
    h2=(struct node*)malloc(sizeof(struct node));
    h1=(struct node*)malloc(sizeof(struct node));
    t1=h1;
    t2=h2;
    p=head->next;

    while(p->next)
    {
        if(p->data%2==0)
        {
            t1->next=p;
            t1=p;
            k1++;
        }
        else
        {
            t2->next=p;
            t2=p;
            k2++;
        }

        p=p->next;
    }

    if(p->data%2==1)
    {
        k2++;
        t2->next=p;
        t1->next=NULL;
    }
    else
    {
        k1++;
        t1->next=p;
        t2->next=NULL;
    }

    printf("%d %d\n",k1,k2);
    h1=h1->next;
    h2=h2->next;
    while(h1)
    {
        if(h1->next==NULL)
            printf("%d\n",h1->data);
        else
            printf("%d ",h1->data);
        h1=h1->next;
    }
    while(h2)
    {
        if(h2->next==NULL)
            printf("%d\n",h2->data);
        else
            printf("%d ",h2->data);
        h2=h2->next;

    }


}

int main()
{
    int n;
    struct node *head;

    scanf("%d",&n);
    head=create(n);

    split(head);

    return 0;

}

3.代码解读:

1.要明确好应该建立3个头,而不是建立一个。

h2=(struct node*)malloc(sizeof(struct node));
h1=(struct node*)malloc(sizeof(struct node));

2.最后一个要单独判断,并且必须把另一个节点变为NULL,否则,会出现重复输出的问题,因为链表按照其结点的next值进行输出的,这种操作需要你明确!

if(p->data%2==1)
    {
        k2++;
        t2->next=p;
        t1->next=NULL;
    }
    else
    {
        k1++;
        t1->next=p;
        t2->next=NULL;
    }
### 创建顺序链表 为了实现顺序建立链表的任务,可以采用C++或Java编程语言来完成。下面提供两种方式的具体代码示例。 #### C++ 示例 在C++中定义节点类`Node`以及用于操作链表的方法: ```cpp #include <iostream> using namespace std; struct Node { int data; struct Node* next; }; // 插入新结点到链表末尾 void append(Node*& head, int newData) { Node* newNode = new Node(); newNode->data = newData; newNode->next = NULL; if (head == NULL) { // 如果列表为空,则设置头指针指向新的节点 head = newNode; return; } Node *last = head; while (last->next != NULL) last = last->next; // 找到最后一个节点 last->next = newNode; // 将最后一个节点链接至新节点 } // 显示链表中的所有元素 void displayList(Node* node) { while(node != NULL){ cout << node->data << " "; node = node->next; } } ``` 接着编写主函数读取用户输入并调用上述方法构建链表[^1]: ```cpp int main() { int n; cin >> n; Node* listHead = NULL; for(int i=0;i<n;++i){ int value; cin>>value; append(listHead,value); } displayList(listHead); // 展示最终形成的链表 return 0; } ``` #### Java 示例 对于Java版本,同样先声明内部静态类表示链表节点,并且创建辅助功能来进行插入打印操作: ```java import java.util.Scanner; class LinkedList { static class Node { int data; Node next; public Node(int d) { this.data = d; this.next = null; } } private static void addAtEnd(Node headRef, int newValue) { Node end = new Node(newValue); if(headRef==null){ headRef=end; return ; }else{ Node temp=headRef; while(temp.next!=null){ temp=temp.next; } temp.next=end; } } private static void printLinkedList(Node node) { while (node != null) { System.out.print(node.data + " "); node = node.next; } } } ``` 随后,在`main()`方法里处理标准输入流并将接收到的数据加入到新建的链表实例当中: ```java public class Main { public static void main(String[] args) { Scanner scanner=new Scanner(System.in); int size=scanner.nextInt(); LinkedList.Node head=null; for(int i=0;i<size;i++){ int num=scanner.nextInt(); LinkedList.addAtEnd(head,num); } LinkedList.printLinkedList(head); // 输出整个链表的内容 } } ```
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值