В функции "Список итераций :: begin ()" {У него есть проблема "нет подходящего конструктора для инициализации" для этой итерации (заголовок).head - указатель узла, и я построил для него конструктор.Я не знаю, в чем проблема.
List.h
#include "Iteratoring.h"
struct Node {
int data; // value in the node
Node *next; // the address of the next node
/**************************************
** CONSTRUCTOR **
***************************************/
Node(int data) : data(data), next(0) {}
};
class List {
private:
Node *head= nullptr; // head node
Node *tail; // tail node
Iteratoring begin();
public:
};
List.cpp
#include "List.h"
Iteratoring List::begin() {
return Iteratoring(head); //The error is here. no matching constructor for initialization
}
Итерация.h
#include "List.h"
class Iteratoring {
private:
Node *current;
public:
Iteratoring(){
current= nullptr;
};
Iteratoring(Node *ptr){
current=ptr;
};
};