literally nothing

This commit is contained in:
Lendaia Mirai
2025-10-26 23:54:01 +01:00
parent 9606f2a888
commit 3301d77783

View File

@@ -0,0 +1,40 @@
using System;
namespace OE.ALGA;
public class FaElem<T> where T : IComparable
{
public T tart;
public FaElem<T>? bal;
public FaElem<T>? jobb;
public FaElem(T tart, FaElem<T>? bal, FaElem<T>? jobb)
{
this.tart = tart;
this.bal = bal;
this.jobb = jobb;
}
}
public class FaHalmaz<T> : Halmaz<T> where T : IComparable
{
FaElem<T>? gyoker;
public void Bejar(Action<T> muvelet)
{
throw new NotImplementedException();
}
public void Beszur(T ertek)
{
throw new NotImplementedException();
}
public bool Eleme(T ertek)
{
throw new NotImplementedException();
}
public void Torol(T ertek)
{
throw new NotImplementedException();
}
}