LeetCode – Design Linked List

Photo by Tim Swaan on Unsplash

  题目:
    Design your implementation of the linked list. You can choose to use the singly linked list or the doubly linked list. A node in a singly linked list should have two attributes: val and nextval is the value of the current node, and next is a pointer/reference to the next node. If you want to use the doubly linked list, you will need one more attribute prev to indicate the previous node in the linked list. Assume all nodes in the linked list are 0-indexed.

Implement these functions in your linked list class:

  • get(index) : Get the value of the index-th node in the linked list. If the index is invalid, return -1.
  • addAtHead(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.
  • addAtTail(val) : Append a node of value val to the last element of the linked list.
  • addAtIndex(index, val) : 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.
  • deleteAtIndex(index) : Delete the index-th node in the linked list, if the index is valid.

Example:

MyLinkedList linkedList = new MyLinkedList();
linkedList.addAtHead(1);
linkedList.addAtTail(3);
linkedList.addAtIndex(1, 2);  // linked list becomes 1->2->3
linkedList.get(1);            // returns 2
linkedList.deleteAtIndex(1);  // now the linked list is 1->3
linkedList.get(1);            // returns 3

Note:

  • All values will be in the range of [1, 1000].
  • The number of operations will be in the range of [1, 1000].
  • Please do not use the built-in LinkedList library.

 

解题:

使用到了哨兵节点方式进行处理

实现:

typedef struct {
    int val;
    struct MyLinkedList *next;
} MyLinkedList;

/** Initialize your data structure here. */
MyLinkedList* myLinkedListCreate() {
    MyLinkedList * head = (MyLinkedList *)malloc(sizeof(MyLinkedList)); /*not use head save value*/
    if (head == NULL)    {
        return head;
    }
    head->val = -1;
    head->next = NULL;
    return head;
}

/** Get the value of the index-th node in the linked list. If the index is invalid, return -1. */
int myLinkedListGet(MyLinkedList* obj, int index) {
    MyLinkedList*p = obj;
    int count = -1;
    if (index < 0) {
        return -1;
    }
    while (p!=NULL ){
         if (count == index){
             break;
         }
         count ++;
         p = p->next;
    }
    if (p!=NULL) {
      return p->val;
    }
    return -1;
    
}

/** 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 myLinkedListAddAtHead(MyLinkedList* obj, int val) {
    
    MyLinkedList * node = (MyLinkedList *)malloc(sizeof(MyLinkedList));
    if (node == NULL){
        return;
    }
    node->val = val;
    node->next = obj->next;
    obj->next = node;
    return ;    
    
}

/** Append a node of value val to the last element of the linked list. */
void myLinkedListAddAtTail(MyLinkedList* obj, int val) {
    MyLinkedList * p = obj;
    while (p->next!=NULL){
        p= p->next;
    }
    
    MyLinkedList * node = (MyLinkedList *)malloc(sizeof(MyLinkedList));
    if (node == NULL) {
        return ;
    }
    node->val = val;
    node->next = p->next;
    p->next = node;

    return ;
    
}

/** 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 myLinkedListAddAtIndex(MyLinkedList* obj, int index, int val) {
    MyLinkedList * p = obj;
    int count=0;
    
    if (index <= 0 ){
        myLinkedListAddAtHead(obj,val);
        return;
    }
    while (p!=NULL){
        if (count == index){
            break;
        }
        count++;
        p= p->next;
    }
    
    
    if (p !=NULL){
        
        MyLinkedList * node = (MyLinkedList *)malloc(sizeof(MyLinkedList));
        if (node==NULL){
            return ;
        }
        node->val = val;
        node->next = p->next;
        p->next = node;
    }
    
    if (p == NULL && count+1 == index){
        myLinkedListAddAtTail(obj, val);
    }
        
    return ;
}

/** Delete the index-th node in the linked list, if the index is valid. */
void myLinkedListDeleteAtIndex(MyLinkedList* obj, int index) {
    
    MyLinkedList * p = obj;
    MyLinkedList *node;
    int count=0;
    
    while (p!=NULL){
        if (count == index){
            break;
        }
        count++;
        p= p->next;
    }
    
    if (p !=NULL){
        node = p->next;
        if (node !=NULL){
            p->next = node->next;
            free(node);
        }
    }
    return ;
    
}

void myLinkedListFree(MyLinkedList* obj) {
    
    MyLinkedList *p = obj;
    MyLinkedList *node ;
    while (p!=NULL){
        node = p;
        p= p->next;
        free(node);
    }
    return ;
}

Be First to Comment

发表回复