0

因此,我应该纠正 c 中的一个方法,该方法将堆栈中的所有负数移到顶部。我这样做的计划是将负片和正片分成 2 个不同的堆栈,然后将它们合并。

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

#define SIZEMAX 10

typedef struct node
   {
   int data;
   struct node* next;
   }node;

typedef struct stack
    {
    node *head;
    int stksize;
    }stack;

void initialize(stack *stk)
   {
   stk->head=NULL;
   stk->stksize=0;
   }

void push(stack *stk,int x)
   {
   if (stk->stksize==SIZEMAX)
      {  
      printf("stack full");
      return;
      }

   node *temp=(node*)malloc(sizeof(node));
   temp->data=x;
   temp->next=stk->head;
   stk->head=temp;
   stk->stksize++;
   }

void print(stack *stk)
   {
   node *temp=stk->head;
   while(temp!=NULL)
      {
      printf("|%d|\n",temp->data);
      temp=temp->next;
      }
   }

void pop(stack *stk)
   {
   node *temp=(node*)malloc(sizeof(node));
   if (stk->stksize==0)
      {
      printf("nothing to pop");
      return;
      }

   temp->data=stk->head->data;
   temp=stk->head->next;
   stk->head=temp;
   free(temp);
   stk->stksize--;
   }

void partition(stack *stk)
   {
   stack negative,positive;

   initialize(&negative);
   initialize(&positive);
   while (stk->stksize!=0)
      {
      if (stk->head->data<0)
         {   
         push(&negative,stk->head->data);
         pop(stk);
         }
      if (stk->head->data>0)
         {
         push(&positive,stk->head->data);
         pop(stk);
         }
      }
   }

int main()
   {
   int i,x;
   stack mystk;
   initialize(&mystk);

   for(i=0;i<5;i++)
      {
      scanf("%d",&x);
      push(&mystk,x);
      }

   print(&mystk);
   partition(&mystk);
   printf("\n");
   print(&mystk);

   return(0);
   } 

在 main 中调用 partition 函数后,我什么也得不到,因为堆栈中的所有内容都被弹出,但我得到了永无止境的数字链。我无法弄清楚问题所在。

4

1 回答 1

0

您的问题在于pop()功能。它应该看起来像

void pop(stack *stk)
{
   if (stk->stksize==0)
   {
      printf("nothing to pop");
      return;
   }

   node *temp=stk->head->next;
   free(stk->head);
   stk->head = temp;
   stk->stksize--;
}

现场演示

并且不要忘记处理partition()函数中的 0 。

于 2014-05-06T04:53:58.910 回答