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

    题目链接

    <>

    持之以恒的学习,方是进步的唯一途径!
  • 相关阅读:
    SQLSERVER查询某张表哪些字段包含某关键字
    SQLSERVER初始化机构path
    Golang的ORM框架之gorm
    Golang的web框架之Gin
    初识Go逆向
    GIT 常用命令
    mac上系统偏好里无法停止mysql
    js正则高级用法: 分组和断言
    Java强软弱虚四种引用的使用场景
    两数之和
  • 原文地址:https://www.cnblogs.com/breezy-ye/p/12753858.html
Copyright © 2011-2022 走看看