Python Forum
Organizing several similar classes with overlapping variables
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Organizing several similar classes with overlapping variables
#8
Oh, sorry, so I would keep the nodes in a dictionary, but each node is a list.
So the class graph would have a variable nodes what would be a dictionary, each node is a represented as a list, seqence of adjacent nodes.
For example, we would have a member

class graph:
    def add_node(node: Hashable, adjacent_nodes: list):
        self._nodes[node] = adjacent_nodes 
The difference between them would eg. be that on nodes, we can permute the adjacent nodes (they then could be sets, not lists), on vertices we could only do cyclic permutations, on points we could, for example, split them in two. split_point([1,2,3,4]) would return ([1,2],[3,4]), but such operations would nor be logical for vertices. Also, when plotting, they would look different.

I think subclassing would do the trick, have a class Node, a class Vertex(Node), class Point(Node),...
and then then just store these as dictionary items, so self._nodes = {"a":node1, "b":vertex1, "c":vertex2,...}

But the downsides are:
  1. I would need filters for accessing only vertices or only points on a graph that has mixed nodes
  2. I could not easily count the number of vertices, since I would have to iterate over the dict
  3. I would not have a classes such as VertexGraph and PointGraph, since they would all be mixed inside the dict.


What about if I made a custom dictionary class that would allow the keys to be partitioned, so I could kida initialize it by
nodes = my_dict(categories=("vertices", "points",..))
and then i could iterate over all nodes, or nodes.vertices, nodes.points,...
Reply


Messages In This Thread
RE: Organizing several similar classes with overlapping variables - by 6hearts - May-07-2023, 02:00 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Unexpected Output - Python Dataframes: Filtering based on Overlapping Dates Xensor 5 1,992 Nov-15-2023, 06:54 PM
Last Post: deanhystad
  Find overlapping date in database Hilal 2 2,298 Dec-18-2021, 08:15 PM
Last Post: Hilal
  Sum similar items tester_V 3 2,868 Jun-29-2021, 06:58 AM
Last Post: tester_V
  Organizing list of objects by attribute scarney1988 3 3,150 Mar-11-2020, 03:55 PM
Last Post: scarney1988
  Organizing Data in Dictionary Ranjirock 3 3,320 Aug-27-2019, 02:48 PM
Last Post: Ranjirock
  I can't use file __init__ to store shared variables and classes in the package AlekseyPython 2 4,151 Feb-04-2019, 06:26 AM
Last Post: AlekseyPython
  Python: if 'X' in 'Y' but with two similar strings as 'X' DreamingInsanity 6 4,987 Feb-01-2019, 01:28 PM
Last Post: buran
  How can classes access each other Functions and Variables at the same time PythonOK 4 3,969 Dec-09-2018, 03:46 AM
Last Post: ichabod801
  Similar to Poker bluekade5050 1 42,660 Nov-14-2018, 04:46 PM
Last Post: j.crater
  organizing by distance gonzo620 7 5,328 Oct-16-2018, 01:41 AM
Last Post: stullis

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020