Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的第 4 年项目中,我们正在 vlsi 中进行遗传算法,为此我需要从结构程序构建一个电路并打破它并交换部件。
我想知道如何在 C++/C 中做到这一点?我尝试使用graphics.h逐行绘制图形,逐圈绘制非常耗时!!!还有其他方法吗?
我使用 turbo C 和 dev c++。
你必须在你的代码中画出每一行和每一圈,不会有捷径。不过,我建议使用其他图形库,如 OpenGL。在其他语言中,某些 IDE 具有您不必编写代码但您可以在编辑器窗口上手动设计图形并自行生成其背后的代码的功能。我不确定是否有任何此类用于 c/c++ 的 IDE。