zoukankan      html  css  js  c++  java
  • LeetCode:设计链表

    设计链表

    要求

    链表增删改功能实现

    示例

    struct listnode{
        int val;
        listnode *nextNode;
        listnode(int x):val(x),nextNode(NULL){}
    };
    class MyLinkedList {
        listnode *head;
        int size;
    public:
        /** Initialize your data structure here. */
        MyLinkedList() {
            head=new listnode(-1);
            size=0;                        
        }
        
        /** Get the value of the index-th node in the linked list. If the index is invalid, return -1. */
        int get(int index) {
            if(index>=size||index<0)return -1;
            listnode *p=head;
            for (int i = 0; i <=index; ++i)
            {
                p=p->nextNode;
            }
            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) {
            addAtIndex(0,val);
        }
        
        /** Append a node of value val to the last element of the linked list. */
        void addAtTail(int val) {
            addAtIndex(size,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. */
        void addAtIndex(int index, int val) {
            listnode *p=head;
            for(int i=0;i<index;++i){
                p=p->nextNode;
            }
            listnode *NewNode=new listnode(val);
            if (index<size)
            {
                NewNode->nextNode=p->nextNode;
                p->nextNode=NewNode;
            }
            else
            {
                p->nextNode=NewNode;
            }
            ++size;
        }
        
        /** Delete the index-th node in the linked list, if the index is valid. */
        void deleteAtIndex(int index) {
            if (index>=0&&index<size)
            {
                listnode *p=head,*p1;
                for (int i = 0; i <index; ++i)
                {
                    p=p->nextNode;
                }
                p1=p->nextNode;
                p->nextNode=p1->nextNode;
                delete p1;
                --size;
            }
        }
    };
    
    /**
     * Your MyLinkedList object will be instantiated and called as such:
     * MyLinkedList* obj = new MyLinkedList();
     * int param_1 = obj->get(index);
     * obj->addAtHead(val);
     * obj->addAtTail(val);
     * obj->addAtIndex(index,val);
     * obj->deleteAtIndex(index);
     */
    

    题目链接

    <>

    持之以恒的学习,方是进步的唯一途径!
  • 相关阅读:
    Java8基础之native方法
    Java基础之static关键字
    Java基础之继承
    Java之equals和hashCode方法
    Java基础之this关键字
    Java基础之super关键字
    Java基础之Serializable接口
    Java之反射学习
    Python3之多线程学习
    Python3之深拷贝和浅拷贝区别
  • 原文地址:https://www.cnblogs.com/breezy-ye/p/12753858.html
Copyright © 2011-2022 走看看