拆分链表

#include<stdio.h>
#include<stdlib.h>
#define NULL 0
typedef struct LNode
{
    struct LNode *next;
    int data;
}LNode,*lnode;

void createList(lnode &l,int n)
{
    lnode p,q;
    l=(lnode)malloc(sizeof(LNode));
    p=l;
    for(int i=0;i<n;i++)
    {
        q=(lnode)malloc(sizeof(LNode));
        scanf("%d",&q->data);
        p->next=q;
        p=q;
    }
    p->next=NULL;
}

void split(lnode &A,lnode &B)
{
    lnode pre,p,q,r;
    B=(lnode)malloc(sizeof(LNode));
    B->next=NULL;
    q=B;
    pre=A;
    p=A->next;
    while(p)
    {
        if(p->data%2==0)
        {
            r=p;
            pre->next=p->next;
            p=p->next;
            q->next=r;
            r->next=NULL;
            q=r;
        }
        else
        {
            pre=p;
            p=p->next;
        }
    }
}

void printList(lnode l)
{
    lnode p;
    p=l->next;
    while(p)
    {
        printf("%d ",p->data);
        p=p->next;
    }
}

void main()
{
    lnode A,B;
    int n;
    scanf("%d",&n);
    printf("input A: \n");
    createList(A,n);
    split(A,B);
    printf("output A: \n");
    printList(A);
    printf("\n");
    printf("output B: \n");
    printList(B);
    printf("\n");
}

你可能感兴趣的:(链表)