C 中的循环 ID 生成器

发布于 2024-12-03 07:43:37 字数 83 浏览 0 评论 0原文

我正在尝试编写一个小型操作系统,并且有 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 技术交流群。

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

发布评论

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

评论(1

凉世弥音 2024-12-10 07:43:37

只需创建一个包含 100 个元素的数组(初始化为 0)并对其进行管理

int array[100] = {0};

/* kill process N */
void killprocess(int N) {
    array[N] = 0;
}

/* add process N */
void addprocess(int N) {
    array[N] = 1;
}

/* find free process starting with N */
int findfreeprocess(int N) {
    int k, ndx;
    for (k = 0; k < 100; k++) {
        ndx = (N + k) % 100;
        if (array[ndx] == 0) return ndx;
    }
    return -1; /* indicate no free process */
}

Just make an array with 100 elements (initialized to 0) and manage that

int array[100] = {0};

/* kill process N */
void killprocess(int N) {
    array[N] = 0;
}

/* add process N */
void addprocess(int N) {
    array[N] = 1;
}

/* find free process starting with N */
int findfreeprocess(int N) {
    int k, ndx;
    for (k = 0; k < 100; k++) {
        ndx = (N + k) % 100;
        if (array[ndx] == 0) return ndx;
    }
    return -1; /* indicate no free process */
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文