表示简单电路时的最佳数据结构 - C++

发布于 2024-12-17 03:27:12 字数 230 浏览 0 评论 0原文

我正在做一个简单的电路系统来用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仙气飘飘 2024-12-24 03:27:12

电路是数据结构的典型示例,其中组件是节点和连接边。

A circuit is a classic example for a graph data structure, with your components being nodes and the connections edges.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文