Algorithmen_Datenstrukturen/Uebung 2/ExtendedListItem.h

12 lines
190 B
C++

#pragma once
#include <string>
class ExtendedListItem {
public:
ExtendedListItem(int key);
std::string toString();
ExtendedListItem *previous;
ExtendedListItem *next;
int key;
};