C ++排序结构链表

时间:2015-04-01 15:27:54

标签: c++ list pointers structure

我正在开发一个项目,我按顺序将文本文件中的数据导入链表,然后输出链表。但是,每当我输出链表时,我总是会反复重复文本文件中的最后一个条目。

这是结构:

struct account
{
    int accountNumber;
    double balance;
    string firstName;
    string lastName;

    account * next;
};

这是我在列表中添加节点的功能:

void insertAccountByAccountNumber(account * & H, account * n)
{
    if (H == NULL)
    {
        H = n;
        return;
    }
    if (H->accountNumber >= n->accountNumber)
    {
        n->next = H;
        H = n;
        return;
    }
    account * t1, *t2;
    t1 = H;
    t2 = H->next;
    while (t2 != NULL)
    {
        if (t2->accountNumber < n->accountNumber)
        {
            t1 = t2;
            t2 = t2->next;

        }
        else
        {
            n->next = t2;
            t1->next = n;
            return;
        }
        t1->next = n;
    }
}

这是我从文本文件中创建节点的代码:

account * head = NULL;

account * currentAccount = new account;

ifstream fin;
fin.open("record.txt");
while (fin >> accountNumberCheck)
{
    fin >> firstNameCheck;
    fin >> lastNameCheck;
    fin >> balanceCheck;
    currentAccount->accountNumber = accountNumberCheck;
    currentAccount->firstName = firstNameCheck;
    currentAccount->lastName = lastNameCheck;
    currentAccount->balance = balanceCheck;
    currentAccount->next = NULL;
    insertAccountByAccountNumber(* & head, currentAccount);
}

showAccounts(head);


fin.close();

2 个答案:

答案 0 :(得分:0)

您遇到的问题是您只在while循环之外创建一个节点,并且每次迭代都会重复使用它。使用链表,每次插入列表时都需要创建一个新元素。

Here是一个链接列表实现,正在进行代码审查,您可以查看它以获得有关链接列表如何工作的一些指示。

答案 1 :(得分:0)

正如Nathan所说,您需要为您创建的每个数据条目分配额外的内存并添加到链接列表中。如果你需要进一步改进,这里有一个: 你实际上并不需要额外的&#39;&amp;&#39;将指针传递给函数时的符号,因为它已经是头数据的地址。尝试:

account * head = NULL;

ifstream fin;
fin.open("record.txt");
while (fin >> accountNumberCheck)
{
    fin >> firstNameCheck;
    fin >> lastNameCheck;
    fin >> balanceCheck;

    account * currentAccount = new account; // Allocate a new memory location for each data entry in the heap
    currentAccount->accountNumber = accountNumberCheck;
    currentAccount->firstName = firstNameCheck;
    currentAccount->lastName = lastNameCheck;
    currentAccount->balance = balanceCheck;
    currentAccount->next = NULL;
    insertAccountByAccountNumber(head, currentAccount);
}

showAccounts(head);


fin.close();

当然函数头将是:

void insertAccountByAccountNumber(account * H,account * n);