以下代码用于基本的循环链表,但是当输入一个大的n(例如8位数字)值时,将引发“ abort(3)(sigabrt)中止信号”错误。我不确定这意味着什么,并且希望就我的代码来解决此问题的一些指导。 谢谢!
#include<bits/stdc++.h>
using namespace std;
//First I created a structure for a node in a circular linked list
struct Node
{
int data;
struct Node *next;
};
// function to create a new node
Node *newNode(int data)
{
Node *temporary = new Node;
temporary->next = temporary;
temporary->data = data;
return temporary;
}
// This function finds the last man standing in
//the game of elimination
void gameOfElimination(int m, int n)
{
//first I created a circular linked list of the size which the user inputted
Node *head = newNode(1);
Node *prev = head;
//this loop links the previous node to the next node, and so on.
for (int index = 2; index <= n; index++)
{
prev->next = newNode(index);
prev = prev->next;
}
prev->next = head; //This connects the last and first nodes in our linked list together.
//when only one node is left, which is our answer:
Node *ptr1 = head, *ptr2 = head;
while (ptr1->next != ptr1)
{
int count = 1;
while (count != m)
{
ptr2 = ptr1;
ptr1 = ptr1->next;
count++;
}
/* Remove the m-th node */
ptr2->next = ptr1->next;
ptr1 = ptr2->next;
}
printf ("%d\n ",
ptr1->data);
}
//main program which takes in values and calls the function:
int main()
{
int n, p;
cin>>n>>p;
int m=p+1;
gameOfElimination(m, n);
return 0;
}
答案 0 :(得分:1)
SIGABRT通常在存在内存问题(堆损坏非常普遍)时发出。在您的代码中,我只看到new()运算符被调用,但是您没有从链接列表中删除任何未使用的节点!似乎您正在耗尽分配给进程的内存。
答案 1 :(得分:0)
您的内存可能已用完。在程序执行期间检查ram的使用情况,这可能会导致问题。