C 中的循环 ID 生成器
我正在尝试编写一个小型操作系统,并且有 100 个进程需要自动生成唯一的进程 ID。它们必须以循环方式顺序生成。 有这方面的算法吗?有什么帮助吗?谢谢。
I am trying to code up a small operating system and I have 100 processes that need to have unique process IDs generated automatically. they have to be generated sequentially in a round-robin fashion.
Is there any algorithm for this? Any help? Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需创建一个包含 100 个元素的数组(初始化为 0)并对其进行管理
Just make an array with 100 elements (initialized to 0) and manage that