NULLが宣言されていないのはなぜですか?
このコードをコンパイルしようとすると、この構造体コンストラクターに問題があります。 typedef struct Node { Node( int data ) // { this->data = data; previous = NULL; // Compiler indicates here next = NULL; } int data; Node* previous; Node* next; } NODE; 私が来ると、このエラーが発生します: \linkedlist\linkedlist.h||In constructor `Node::Node(int)':| \linkedlist\linkedlist.h|9|error: `NULL' was not declared in this scope| ||=== Build finished: 1 errors, …