k
Size: a a a
k
G
G
Н
LinkedList(forward_list<Type>* list)
Н
AP
М
LinkedList(forward_list<Type>* list)
#include <iostream>
#include <forward_list>
using namespace std;
template<typename Type>
class LinkedList
{
public:
LinkedList(forward_list<Type> *list = NULL)
{
}
};
int main()
{
LinkedList<int> list;
return 0;
}
М
AP
AP
AP
Н
#include <iostream>
#include <forward_list>
using namespace std;
template<typename Type>
class LinkedList
{
public:
LinkedList(forward_list<Type> *list = NULL)
{
}
};
int main()
{
LinkedList<int> list;
return 0;
}
М
М
Н
AP
М
Н
М
AP