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);
     */
    

    题目链接

    <>

    持之以恒的学习,方是进步的唯一途径!
  • 相关阅读:
    为什么选择 Yeoman 及 Yeoman 的安装
    NPOI高效匯出Excel
    CentOS7 MongoDB安裝
    打印函数调用堆栈
    libevent源码分析:eventop
    libevent源码分析:time-test例子
    libevent源码分析:event_assign、event_new
    libevent源码分析:bufferevent
    lievent源码分析:evbuffer
    epoll实现压测工具
  • 原文地址:https://www.cnblogs.com/breezy-ye/p/12753858.html
Copyright © 2011-2022 走看看