代码随想录算法训练营第三天 | 203.移除链表元素 ,707.设计链表 ,206.反转链表

代码随想录算法训练营第三天 | 203.移除链表元素 ,707.设计链表 ,206.反转链表

1.1 203.移除链表元素

思路:

  1. 需要考虑当前的指针位置,从而进行判断处理
  2. 最终返回头结点,可以通过dummyHead进行返回
class Solution {
public:
    ListNode* removeElements(ListNode* head, int val) {
        ListNode* dummyHead = new ListNode();
        ListNode* cur = new ListNode();
        dummyHead -> next = head;
        cur = dummyHead;
        while(cur -> next){
            if(cur->next->val == val){
                cur->next = cur->next->next;
            }
            else cur = cur -> next;
        }
        return dummyHead->next;
    }
};

1.2 707.设计链表

思路:

  1. 初始化的时候维护_dummyHead_size
class MyLinkedList {
public:
    struct ListNode{
        int val;
        ListNode* next;
        ListNode(int x): val(x), next(nullptr){}
    };
    MyLinkedList() {
      _dummyHead = new ListNode(0);
      _size = 0;  
    }
    
    int get(int index) {
        if(index < 0 || index > _size-1) return -1;
        ListNode* cur = _dummyHead->next;
        while(index--){
            cur = cur->next;
        }
        return cur->val;
    }
    
    void addAtHead(int val) {
        ListNode* newNode = new ListNode(val);
        newNode->next = _dummyHead->next;
        _dummyHead->next = newNode;
        _size++;
    }
    
    void addAtTail(int val) {
        ListNode* newNode = new ListNode(val);
        ListNode* cur = _dummyHead;
        while(cur->next){
            cur = cur->next;
        }
        cur->next = newNode;
        _size++;
    }
    
    void addAtIndex(int index, int val) {
        if(_size < index) return;
        ListNode* newNode = new ListNode(val);
        ListNode* cur = _dummyHead;
        while(index--){
            cur = cur->next;
        }
        newNode->next = cur->next;
        cur->next = newNode;
        _size++;
    }
    
    void deleteAtIndex(int index) {
        if(index < 0 || index > _size-1) return;
        ListNode* cur = _dummyHead;
        while(index--){
            cur = cur->next;
        }
        cur->next = cur->next->next;
        _size--;
    }
private:
    int _size;
    ListNode* _dummyHead;
};

1.3 206.反转链表

思路:

  1. 需要一个值存放下一节点的信息
  2. 注意首位最后的处理
class Solution {
public:
    ListNode* reverseList(ListNode* head) {
        if(head == nullptr || head->next == nullptr) return head;
        ListNode *pre = head;
        ListNode *cur = head->next;
        while(cur != nullptr){
            ListNode *temp = cur->next;
            cur->next = pre;
            pre = cur;
            cur = temp;
        }
        head->next = nullptr;
        return pre;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值