Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class gyümölcsÁllapot : AbsztraktÁllapot
- {
- public override bool ÁllapotE()
- {
- throw new NotImplementedException();
- }
- public override bool CélÁllapotE()
- {
- throw new NotImplementedException();
- }
- public override int OperátorokSzáma()
- {
- throw new NotImplementedException();
- }
- public override bool SzuperOperátor(int i)
- {
- throw new NotImplementedException();
- }
- // Ami még kell:
- // - Preállapot, megvizsgálni hogy az adott operátorhívás megfelelő-e
- // - Clone + copy konstruktor, ahol minden értéket klónozol ha referenciatípus
- // - Equals + gethashcode, nem létszükség, de lehet hogy gyorsítja a megoldást
- // - ToString, kiíratni az aktuális állapot értékeit
- }
Advertisement
Add Comment
Please, Sign In to add comment