0

ユーザー入力を受け取り、入力を逆にするプログラムを構築しようとしています。出力には、元の文字列と逆文字列の両方が表示されます。プログラムはコンパイルされますが、「0ÿÿÿ; Original Linked list Segmentation Fault (core dumped)」というエラーが表示されます

これが私のコードです:

 struct node
 {
 int info;
 struct node *next;
 struct node *prev;
 }node;
 void reverse(struct node **head_1)
 {
 struct node *temp = NULL;
 struct node *current = *head_1;
 while (current !=  NULL)
  {
       temp = current->prev;
       current->prev = current->next;
       current->next = temp;
       current = current->prev;
     }     
      if(temp != NULL )
       *head_1 = temp->prev;
   }    
void push(struct node** head_1, int new_data)
{
    struct node* new_node =
    (struct node*) malloc(sizeof(struct node));

     new_node->info  = new_data;
     new_node->prev = NULL;
    new_node->next = (*head_1);   
    if((*head_1) !=  NULL)
      (*head_1)->prev = new_node ;   
      (*head_1)    = new_node;
 }
void printList(struct node *node)
{
while(node!=NULL)
    {
    printf("%s ", node->info);
    node = node->next;
    }
        }

 int main()
 {
struct node* head = NULL;
char str[300], ch;
int i;
printf("enter ");
    while((ch=getchar())!='\n');
{
str[i++]=ch;
str[i]='0';
i=0;
}
    while (str[i]!='\0')
{ 
putchar(str[i++]);
push(&head, ch);
}
    printf("\n Original ");
    printList(head);
    reverse(&head);
    printf("\n Reversed ");
    printList(head);          

     getchar();
     }
4

1 に答える 1

0

初期化されていない変数iを使用してアクセスしていますstr

int i;//Unitialized variable
printf("enter ");
    while((ch=getchar())!='\n');
{
str[i++]=ch;//This will acess memory at address str+random value from i  

変化するint i; to int i = 0;

文字列ではなく整数であるため、これもprintf("%s ", node->info);正しくありません。node->info次のようなものでなければなりませんprintf("%d ", node->info);

私が見つけた追加の問題がありますが、それが最終的なものであるとは思えません。

    while((ch=getchar())!='\n');//why ;? this will lead to all chars to be skipped and only \n will be passed to the loop body
{
str[i++]=ch;
str[i]='0';//it should be '\0' instead of '0', and there is no sense to set it on each iteration
i=0;//This will reset i on each iteration overwriting previous char
}
于 2013-04-21T22:28:30.970 に答える