Skip to content

leet code: design linked list

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
struct Node {
    int val;
    Node* next;
};

class MyLinkedList {
public:
    /** Initialize your data structure here. */
    MyLinkedList() {
        memset(mData, 0, sizeof(Node) * 3000);
        mHead = new Node();
        mSize = 0;
        mCurIdx = 0;
    }

    /** Get the value of the index-th node in the linked list. If the index is invalid, return -1. */
    int get(int index) {
        // terminal condition: fail
        if (index < 0 || index >= mSize)
        {
            return -1;
        }
        // get function core
        Node* p = mHead->next;
        while (index--)
        {
            p = p->next;
        }
        return p->val;
    }

    /** Add a node of value val before the first element of the linked list. After the insertion, the new node will be the first node of the linked list. */
    void addAtHead(int val) {
        Node* newNode = &mData[mCurIdx];
        newNode->val = val;
        newNode->next = mHead->next;
        mHead->next = newNode;
        mSize++;
        mCurIdx++;
    }

    /** Append a node of value val to the last element of the linked list. */
    void addAtTail(int val) {
        Node* newNode = &mData[mCurIdx];
        newNode->val = val;
        Node* p = mHead;
        while (p->next != nullptr)
        {
            p = p->next;
        }
        p->next = newNode;
        mSize++;
        mCurIdx++;
    }

    /** Add a node of value val before the index-th node in the linked list. If index equals to the length of linked list, the node will be appended to the end of linked list. If index is greater than the length, the node will not be inserted. */
    void addAtIndex(int index, int val) {
        // terminal condition: fail
        if (index < 0 || index > mSize)
        {
            return;
        }

        // function core
        if (index == 0)
        {
            addAtHead(val);
        }
        else if (index == mSize)
        {
            addAtTail(val);
        }
        else
        {
            Node* newNode = &mData[mCurIdx];
            newNode->val = val;
            Node* p = mHead;
            while (index--)
            {
                p = p->next;
            }
            newNode->next = p->next;
            p->next = newNode;
            mSize++;
            mCurIdx++;
        }
    }

    /** Delete the index-th node in the linked list, if the index is valid. */
    void deleteAtIndex(int index) {
        // terminal condition: fail
        if (index < 0 || index >= mSize)
        {
            return;
        }

        // function core
        Node* p = mHead;
        while (index--)
        {
            p = p->next;
        }
        p->next = p->next->next;
        mSize--;
    }
private:
    Node* mHead;
    int mSize;
    Node mData[3000];
    int mCurIdx;
};

어제의 코드(60ms)에 비해서 16ms 가 줄었으나, 여전히 성능이 아쉽습니다.