c_cpp LinkedList函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp LinkedList函数相关的知识,希望对你有一定的参考价值。

#include <iostream>
using namespace std;

class LinkedList{
  public:
    LinkedList();
    ~LinkedList();
    //TODO: create copy constructor and == operator func
    void appendToFront(int val);
    void appendToBack(int val);
  private:
    struct Node{
      int data;
      Node *next;
    };
    Node *head;
    Node *tail;
};

//constructor
LinkedList::LinkedList(){
  this->head = nullptr;
  this->tail = nullptr;
}

//destructor
LinkedList::LinkedList(){
  
}

以上是关于c_cpp LinkedList函数的主要内容,如果未能解决你的问题,请参考以下文章

递归 - 具有 void 函数返回类型的反向 LinkedList

通过函数访问另一个类中的私有结构 LinkedList;

从源代码来理解ArrayList和LinkedList差别

c_cpp 函数strncpy()

c_cpp 函数getline()

c_cpp 关联函数