CS计算机代考程序代写 #include “NodeList.h”

#include “NodeList.h”
#include

NodeList::NodeList(){
// TODO
}

NodeList::~NodeList(){
// TODO
}

NodeList::NodeList(NodeList& other){
// TODO
}

int NodeList::getLength(){
// TODO
}

void NodeList::addElement(Node* newPos){
// TODO
}

Node* NodeList::getNode(int i){
// TODO
}