表示简单电路时的最佳数据结构 - C++
我正在做一个简单的电路系统来用 C++ 模拟欧姆定律。 (V=IR)
为此,我使用 Qt 来制作 GUI。用户将能够连接不同的部件/组件,例如电阻器、电池、电压表、电流表、灯泡,一旦单击启动按钮,电压表和电流表就会显示读数。那么用户应该能够添加/删除电池。在执行此操作时,用户应该意识到 R 是一个常数。
此外,如果使用灯泡,则应根据法律规定以一定的强度发光。
我需要知道如何在代码中表示数据结构。
I'm doing a simple electric circuit system to simulate Ohm's law in C++. (V=I.R)
For this I'm using Qt to make the GUI. The user will be able to connect different pieces/components like Resistors, batteries, voltmeter, ammeter, light bulb and once a start button is clicked the voltmeters and ammeters should display readings. then the user should be able to add/remove batteries. While doing this user should realize that the R is a constant.
additionally if light bulbs were used they should light with some intensity according to the law.
I need to know how to represent in data structures in the code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
电路是图数据结构的典型示例,其中组件是节点和连接边。
A circuit is a classic example for a graph data structure, with your components being nodes and the connections edges.