Generic Linked list C++, can't create pointer

前端 未结 0 339
长情又很酷
长情又很酷 2020-12-01 14:39

I\'m implementing generic list in C++ like this:

template
class linked_list
{
private:
    node *first;
    node* last;

publ         


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