NachiaVivias/cp-library

BbstList イテレータの後置インクリメントのバグ

Closed this issue · 0 comments

正:↓

    Iterator operator++(int) { auto res = *this; ++*this; return res; }
    Iterator operator--(int) { auto res = *this; --*this; return res; }