Node creation in Linked list in c++

后端 未结 0 1628
情歌与酒
情歌与酒 2021-01-02 15:14
class node{
    public:
    int data;
    node* next;
    node(int val){
       data=val;
       next=NULL;
    }
};

For this class the object creat

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