作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个 python 程序,它在组合电路上执行一些操作,例如比较与其他电路的相等性、合并门、计数门、计数连接、查找扇出门,...
现在我用以下方式表示组合电路:
(我还添加了相等性测试)
class Circuit:
def __init__(self):
self.gates = {} # key = the gates number, value = the gate
def __eq__(self, other):
if set(self.gates.keys()) != set(other.gates.keys()):
return False
for key in self.gates.keys():
if self.gates[key] != other.gates[key]:
return False
return True
class Gate:
def __init__(self, gate_type, number):
self.gate_type = gate_type # and, or, nand, nor, xor, xnor
self.number = number
self.incoming_gates = []
self.outgoing_gates = []
def __eq__(self, other):
# i know this is not correct, but in my case correct enough
return (
self.gate_type == other.gate_type
and self.number == other.number
and len(self.incoming) == len(other.incoming)
and len(self.outgoing) == len(other.outgoing)
)
我在代码中的表现对我来说似乎很费力,所以我正在寻找一种更好的方法来做到这一点。我已经搜索了这方面的最佳实践,但没有找到任何东西。
最佳答案
您希望实现一个有向图,其中某些数据存储在顶点中。 Wikipedia has a discussion of various ways to represent a graph和 here's a stackoverflow谈论更普遍的问题。
为了快速修改图的拓扑结构,以及执行(合并门等)像您这样的邻接表通常很有用。
一般来说,我认为对架构的测试是在你真正开始实现它的时候——我怀疑一旦你开始使用它,你就会很快非常熟悉你的设计的好处和坏处,并且能够根据需要调整或构建辅助函数。
关于python - 如何在代码中表示组合电路,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69668441/
我是一名优秀的程序员,十分优秀!