0

我创建了一个 LinkedList 类,该类具有删除列表中第一个元素和删除列表中最后一个元素的功能。第一个很简单,删除元素后,我将它设置为指向下一个元素。效果很好。但是,当我删除最后一个元素时,我必须将它指向列表中的前一个元素,该元素在该点成为最后一个元素。我无法弄清楚如何做到这一点。请指教。这是代码:

    void LinkedList::pop_front()
{
    mFront->data = NULL;
    mFront = mFront->next;
}

如何获得删除最后一个元素但将尾部重置为指向新尾部的函数?

void LinkedList::pop_back()
{
mBack->data = NULL;
...
}

class LinkedList
{
    public:

        // Default Constructor
        // Purpose: Initializes an empty list
        // Parameters: none
        // Returns: none
        LinkedList();

        // The push_front function
        // Purpose: add an item to the front of the list
        // Parameters: a int item for the front
        // Returns: none        
        void push_front(int data);

        // The push_back function
        // Purpose: insert an item into the back of the list
        // Parameters: int item to add the the back
        // Returns: none                
        void push_back(int data);

        // The pop_front function
        // Purpose: delete the item in the front of the list
        // Parameters: none
        // Returns: none
        void pop_front();

        // the pop_back function
        // Purpose: remove the item at the end of the list
        // Parameters: none
        // Returns: none        
        void pop_back();

        // The getFirst function
        // Purpose: print the first item in the list
        // Parameters: none
        // Returns: none
        void getFirst();

        // the GetLast function
        // Purpose: return the last item in the list
        // Parameters: none
        // Returns: none
        void getLast();

        void printList();

        // the clear function
        // Purpose: clear the list, free memory
        // Parameters: none
        // Returns: none
        void clear();

        // Destructor
        // Purpose: clear up memory
        // Parameters: none
        // Returns: none
        ~LinkedList();

    private:

            LinkedList *mFront; //  point to the front of our list
            LinkedList *mBack; // point to the back of our list
            LinkedList *next;  // the next node
            LinkedList *previous; // the previous node
            int data;  // our list data manipulator
4

2 回答 2

4

单链表不提供 O(1) 删除最后一个元素。您必须从头开始遍历整个列表才能找到倒数第二个元素。

Node* i = mFront;
while ( i->next != mBack ) i = i->next;
mBack = i;
于 2012-04-18T21:01:12.533 回答
1

如果列表不是双链接的,则必须从第一个元素开始找到最后一个:

void LinkedList::pop_back()
{
   mBack->data = NULL;
   current = mFront;
   do{
      current = current->next
   } while ( current->next );
   mBack = current;
}

非常重要- 由于data似乎是一个指针,您可能会遇到内存泄漏。只是设置data = NULL不会释放内存,您必须明确删除它:

delete mFront->data;
于 2012-04-18T21:03:04.683 回答