create a function to add a doubly linked list to itself at the end

前端 未结 0 731
北荒
北荒 2020-12-13 17:38
#include 
#include 
using namespace std;
class Node{
public:
double data;
Node* next;
Node* prev;
};
void insert(Node**,int);
void disp         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题