emplate class Node { public: /// CTORS Node() : prev_(nullptr), next_(nullptr) {} Node(T element) : element_(element), prev_(nullptr), next_(nullptr) {} Node(T element, Node *prev, Node *next) : element_(element), prev_(prev), next_(next) {} /// Set the pointer to the previous el
my code needs help. please fix
template <class T>
class Node
{
public:
/// CTORS
Node() : prev_(nullptr), next_(nullptr) {}
Node(T element) : element_(element), prev_(nullptr), next_(nullptr) {}
Node(T element, Node *prev, Node *next) : element_(element), prev_(prev), next_(next) {}
/// Set the pointer to the previous element
void setPrevious(Node *prev) { prev_ = prev; }
/// Set the pointer to the previous element
void setPrev(Node *prev) { prev_ = prev; }
/// Get a pointer to the previous element
Node *getPrevious() { return prev_; }
/// Get a pointer to the previous element
Node *getPrev() { return prev_; }
/// Set the pointer to the next node
void setNext(Node *next) { next_ = next; }
/// Get a pointer to the next node
Node *getNext() { return next_; }
/// Set the element this node holds
void setElement(T element) { element_ = element; }
/// Get the element this node holds
T &getElement() { return element_; }
/// Return a reference to the element
T &operator*() { return element_; }
private:
T element_;
Node *prev_;
Node *next_;
};.
![](/static/compass_v2/shared-icons/check-mark.png)
Trending now
This is a popular solution!
Step by step
Solved in 2 steps
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)