Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. public abstract class GrafAbstrakcyjny<T, K> : IGraf<T, K>
  2. {
  3. protected readonly List<T> Wierzholki = new List<T>();
  4. protected readonly List<IPara<T>> Krawedzie = new List<IPara<T>>();
  5. protected readonly Dictionary<IPara<T>, K> Wagi = new Dictionary<IPara<T>, K>();
  6. protected List<IPara<T>> Skojarzenia = new List<IPara<T>>();
  7. protected Dictionary<IPara<T>, bool> OdwiedzoneKrawedzie = new Dictionary<IPara<T>, bool>();
  8. protected Dictionary<T, bool> OdwiedzoneWierzholki = new Dictionary<T, bool>();
  9. protected List<T> Zbior_V1 = new List<T>();
  10. protected List<T> Zbior_V2 = new List<T>();
  11. protected Dictionary<T, K> Etykiety = new Dictionary<T, K>();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement