/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/cpp/cpp-506-143-001/main.cpp
15 строк
368 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
class HashTable { public: class Iterator { HashTable* table_; size_t index_; friend class HashTable; Iterator(HashTable* t, size_t i) : table_(t), index_(i) {} public: bool operator!=(const Iterator& other) const { return index_ != other.index_; } }; Iterator begin(); Iterator end(); };