将链表拆分为另外两个列表,一个具有奇数索引,另一个具有偶数索引

时间:2013-03-24 13:41:44

标签: c linked-list

问题是要写一个函数split(),它将链表的内容复制到另外两个链表中。该函数将具有偶数索引(0,2等)的节点复制到EvenList,将具有奇数索引的节点复制到oddList。不应修改原始链接列表。假设evenlist和oddlist将作为空列表传递给函数(* ptrEvenList = * ptrOddList = NULL)。

在我的程序中,它可以显示初始列表。虽然其他两个列表有问题。它会导致程序终止。

#include<stdio.h>
#include<stdlib.h>

#define SIZE 9

//定义节点列表的结构

typedef struct node{
    int item;
    struct node *next;
}ListNode;

//调用函数

int search(ListNode *head,int value);
void printNode(ListNode *head);
void split(ListNode *head,ListNode **OddList,ListNode **EvenList);

//主要功能

int main(){
    ListNode *head=NULL;
    ListNode *temp;
    ListNode *OddList=NULL;
    ListNode *EvenList=NULL;

//在问题中,它要求我将两个空列表传递给函数'slipt'

    int ar[SIZE]={1,3,5,2,4,6,19,16,7};
    int value=0;
    int i;

    head=(struct node*)malloc(sizeof(ListNode));
    temp=head;
    for(i=0;i<SIZE;i++){
        temp->item=ar[i];
        if(i==(SIZE-1))  //last item
            break;
        temp->next=(struct node*)malloc(sizeof(ListNode));
        temp=temp->next;
    }
    temp->next=NULL;
    printf("Current list:");
    printNode(head);

    split(head,&OddList,&EvenList);


return 0;
}

**** !!!!!!!!! 我认为这个问题就在这一部分。

void split(ListNode *head,ListNode **ptrOddList,ListNode **ptrEvenList){
    int remainder;
    ListNode *tempO,*tempE,*temp;



    if (head==NULL)
        return;
    else{
        temp=head;

        *ptrOddList=(struct node*)malloc(sizeof(ListNode));
        *ptrEvenList=(struct node*)malloc(sizeof(ListNode));

        tempO=*ptrOddList;
        tempE=*ptrEvenList;

        while(temp!=NULL){
            remainder=temp->item%2;

            if(remainder==0){
                tempE->next=(struct node*)malloc(sizeof(ListNode));
                tempE->item=temp->item;
                tempE=tempE->next;
            }
            else{
                tempO->next=(struct node*)malloc(sizeof(ListNode));
                tempO->item=temp->item;
                tempO=tempO->next;
            }
            temp=temp->next;
        }
        tempE=NULL;
        tempO=NULL;

//我还尝试了tempE->next=NULL;tempO->next=NULL //程序可以运行,如果我像上面那样修改它,但显示的最后两个数字将是两个随机数。

        printf("Even List:");
        printNode((*ptrEvenList));
        printf("Odd List:");
        printNode((*ptrOddList));
    }
}

//用于打印结果的函数

void printNode(ListNode *head){
    if (head==NULL)
        return;
    while(head!=NULL){
        printf("%d ",head->item);
        head=head->next;
    }
    printf("\n");
}

4 个答案:

答案 0 :(得分:1)

void split(ListNode *head, ListNode **ptrOddList, ListNode **ptrEvenList){

    for( ; head ;  head= head->next) {
        ListNode *temp;

        temp = malloc(sizeof *temp );
        memcpy (temp, head, sizeof *temp);

        if (temp->item %2) { *ptrOddList = temp; ptrOddList = &temp->next;}
        else  { *ptrEvenList = temp; ptrEvenList = &temp->next;}
        }

    *ptrOddList = NULL;
    *ptrEvenList = NULL;
}

答案 1 :(得分:0)

您总是过早地分配节点一步。请注意,在开始时,您总是为两个列表分配一个节点 - 但如果列表中没有奇数,该怎么办?那么你的清单已经太长了。每次分配新节点时都会这样做。

您需要做的是将指向指针的指针保存到每个列表的节点。这将是指向列表中最后一个节点的“下一个”指针的指针,或者如果列表为空则指向列表头部的指针。下一个指针和列表指针都应该从NULL开始。

分配新节点时,使用指向节点的指针将最后一个“下一个”指针设置为指向新节点。

答案 2 :(得分:0)

void split(ListNode *head,ListNode **ptrOddList,ListNode **ptrEvenList){
int remainder;
int countO=0;
int countE=0;
ListNode *tempO,*tempE;

if (head==NULL)
    return;
else{
    (*ptrOddList)=(struct node*)malloc(sizeof(ListNode));
    (*ptrEvenList)=(struct node*)malloc(sizeof(ListNode));

    while(head!=NULL){
        remainder=head->item%2;

        if(remainder==0){
            if(countE>0){
                tempE->next=head;
                tempE=tempE->next;
            }
                            else
                                tempE=*ptrOddList;
            tempE->item=head->item;
            countE++;

        }
        else{
            if(countO>0){
                tempO->next=head;
                tempO=tempO->next;
            }
                            else
                                tempO=*ptrOddList;
            tempO->item=head->item;
            countO++;

        }
        head=head->next;
    }
    tempE->next=NULL;
    tempO->next=NULL;
    printf("Even List:");
    printNode((*ptrEvenList));
    printf("Odd List:");
    printNode((*ptrOddList));
}
}

答案 3 :(得分:0)

我认为这里的问题是根据指数将列表分成两半。但我可以看到values(item%2)上的实现。

因此,在列表中,第一个节点的索引应为1,第二个节点的索引为2,依此类推。

使用count变量,最初设置为0。

int node_count = 0;
while(head != NULL)
{
  node_count ++;

  if(node_count%2)
  {
       //prepare odd_list;
  }
  else
  {
       //prepare even_list;
  }
  head = head->next;
}