- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试理解 fork() 系统调用以在 Linux 上工作,这就是我编写以下 C 程序的原因:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
int main(int argc, char *argv[]) {
int n = atoi(argv[1]);
int i;
pid_t pid;
printf("Main: PID: %d, PPID:%d\n", getpid(), getppid());
for (i = 0; i <= n; i++) {
if (pid = fork()) {
pid = fork();
if (pid > 0) {
return (0);
}
if (i == n) {
printf("We are in the level %d and as a child PID:%d,PPID:%d\n", n,
getpid(), getppid());
}
}
}
return 0;
}
我所做的是:创建深度为 n 的进程树,其中每个进程创建 2 个子进程,然后终止。最后我只是打印出最后一层的 child 的 pids(所以如果 n=3,就会有 8 个 child ,我想看看这些 child 的 pids)。据我了解,代码运行正常。(如果有任何错误,请纠正我)。
在这之后,我想改变我的代码来做这样的事情:
1
/ \
/ \
/ \
/ \
2 3
/ \ / \
/ \ / \
4 5 6 7
例如,如果 n=2。我想打印出如下内容:
Last Level Children: 1 2 4
Last Level Children: 1 2 5
Last Level Children: 1 3 6
Last Level Children: 1 3 7
为此,我编写了以下代码:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#define SIZE 256
int main(int argc, char *argv[]) {
int n = atoi(argv[1]);
int i, k;
int m = 1;
int j = 0;
int arr[SIZE];
pid_t pid;
arr[j] = m;
m++;
j++;
for (i = 0; i <= n; i++) {
pid = getpid();
if (pid = fork()) {
arr[j] = m;
m++;
j++;
pid = fork();
if (pid > 0) {
arr[j] = m;
m++;
j++;
return (0);
}
if (i == n) {
printf("Process tree: ");
for (k = 0; k <= n; k++) {
printf("%d ", arr[k]);
}
printf("\n");
}
}
}
return 0;
}
但是当我运行程序时,我似乎得到了错误的结果。我在这里做错了什么?感谢您在正确方向上提供的任何帮助。
最佳答案
您的主要问题是您的 child 将继续他们 parent 的循环并创造出您认为更多的 child 。我只能建议您阅读两次 manuel fork()
。管理流程创建并不容易。您需要了解您的 child 会复制 (~) 他们 parent 的所有状态。两者都将执行相同的代码,因此您需要注意根据 fork()
的返回值,您的 fork 之后将执行哪些代码。
comment EOF 的建议是不要在一个函数中使用多个 fork()
。您会看到我的实现示例通过没有两个 fork()
调用来保持简单,我将调用隔离在一个特定的地方。
这是您第一个代码的正确实现:
#include <stdio.h>
#include <unistd.h>
static int create_two_child(int i, int n);
int main(void) { return create_two_child(0, 2); }
// tail recursive function: child will call this function to create two new
// child
static int create_two_child(int i, int n) {
if (i < n) { // we look our level
// debug output
printf("DEBUG: We are in the level %d and as a child PID:%d, PPID:%d\n", i,
getpid(), getppid());
fflush(stdout); // we don't want child print parent output
for (int j = 0; j < 2; j++) { // we loop to create two child
pid_t pid = fork();
if (pid == -1) { // error
perror("fork()");
return 1;
} else if (pid == 0) { // child
return create_two_child(i + 1, n); // we call ourself with i + 1 and
// stop function here wich return we
// don't want that child continue the
// loop
}
// parent will continue the loop to the number of child wanted
}
} else {
// if we are at max level we show our pid
printf("We are in the level max %d and as a child PID:%d, PPID:%d\n", i,
getpid(), getppid());
}
return 0;
}
你想要显示树的第二个实现:
#include <stdio.h>
#include <unistd.h>
static int create_two_child(size_t *backtrace, size_t id, size_t i, size_t n);
int main(void) {
// we create array to stock id
size_t backtrace[3];
size_t n = sizeof backtrace / sizeof *backtrace;
return create_two_child(backtrace, 1, 0, n);
}
// tail recursive function: child will call this function to create two new
// child
static int create_two_child(size_t *backtrace, size_t id, size_t i, size_t n) {
if (i < n) { // we look our level
for (size_t j = 0; j < 2; j++) { // we loop to create two child
pid_t pid = fork();
if (pid == -1) { // error
perror("fork()");
return 1;
} else if (pid == 0) { // child
backtrace[i] = id + 1;
// id * 2 cause we create 2 child each time
return create_two_child(backtrace, id * 2, i + 1,
n); // we call ourself with i + 1 and
// stop function here wich return we
// don't want that child continue the
// loop
}
id++;
// parent will continue the loop to the number of child wanted
}
} else {
// if we are at max level we show our backtrace
printf("Last Level Children: 1");
for (size_t j = 0; j < n; j++) {
printf(", %zu", backtrace[j]);
}
printf("\n");
}
return 0;
}
关于使用 fork() 创建进程树,然后对它们进行编号并将其显示在数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47113181/
关于 B 树与 B+ 树,网上有一个比较经典的问题:为什么 MongoDb 使用 B 树,而 MySQL 索引使用 B+ 树? 但实际上 MongoDb 真的用的是 B 树吗?
如何将 R* Tree 实现为持久(基于磁盘)树?保存 R* 树索引或保存叶值的文件的体系结构是什么? 注意:此外,如何在这种持久性 R* 树中执行插入、更新和删除操作? 注意事项二:我已经实现了一个
目前,我正在努力用 Java 表示我用 SML 编写的 AST 树,这样我就可以随时用 Java 遍历它。 我想知道是否应该在 Java 中创建一个 Node 类,其中包含我想要表示的数据,以及一个数
我之前用过这个库http://www.cs.umd.edu/~mount/ANN/ .但是,它们不提供范围查询实现。我猜是否有一个 C++ 范围查询实现(圆形或矩形),用于查询二维数据。 谢谢。 最佳
在进一步分析为什么MySQL数据库索引选择使用B+树之前,我相信很多小伙伴对数据结构中的树还是有些许模糊的,因此我们由浅入深一步步探讨树的演进过程,在一步步引出B树以及为什么MySQL数据库索引选择
书接上回,今天和大家一起动手来自己实现树。 相信通过前面的章节学习,大家已经明白树是什么了,今天我们主要针对二叉树,分别使用顺序存储和链式存储来实现树。 01、数组实现 我们在上一节中说过,
书节上回,我们接着聊二叉树,N叉树,以及树的存储。 01、满二叉树 如果一个二叉树,除最后一层节点外,每一层的节点数都达到最大值,即每个节点都有两个子节点,同时所有叶子节点都在最后一层,则这个
树是一种非线性数据结构,是以分支关系定义的层次结构,因此形态上和自然界中的倒挂的树很像,而数据结构中树根向上树叶向下。 什么是树? 01、定义 树是由n(n>=0)个元素节点组成的
操作系统的那棵“树” 今天从一颗 开始,我们看看如何从小树苗长成一颗苍天大树。 运转CPU CPU运转起来很简单,就是不断的从内存取值执行。 CPU没有好好运转 IO是个耗费时间的活,如果CPU在取值
我想为海洋生物学类(class)制作一个简单的系统发育树作为教育示例。我有一个具有分类等级的物种列表: Group <- c("Benthos","Benthos","Benthos","Be
我从这段代码中删除节点时遇到问题,如果我插入数字 12 并尝试删除它,它不会删除它,我尝试调试,似乎当它尝试删除时,它出错了树的。但是,如果我尝试删除它已经插入主节点的节点,它将删除它,或者我插入数字
B+ 树的叶节点链接在一起。将 B+ 树的指针结构视为有向图,它不是循环的。但是忽略指针的方向并将其视为链接在一起的无向叶节点会在图中创建循环。 在 Haskell 中,如何将叶子构造为父内部节点的子
我在 GWT 中使用树控件。我有一个自定义小部件,我将其添加为 TreeItem: Tree testTree = new Tree(); testTree.addItem(myWidget); 我想
它有点像混合树/链表结构。这是我定义结构的方式 struct node { nodeP sibling; nodeP child; nodeP parent; char
我编写了使用队列遍历树的代码,但是下面的出队函数生成错误,head = p->next 是否有问题?我不明白为什么这部分是错误的。 void Levelorder(void) { node *tmp,
例如,我想解析以下数组: var array1 = ["a.b.c.d", "a.e.f.g", "a.h", "a.i.j", "a.b.k"] 进入: var json1 = { "nod
问题 -> 给定一棵二叉树和一个和,确定该树是否具有从根到叶的路径,使得沿路径的所有值相加等于给定的和。 我的解决方案 -> public class Solution { public bo
我有一个创建 java 树的任务,它包含三列:运动名称、运动类别中的运动计数和上次更新。类似的东西显示在下面的图像上: 如您所见,有 4 种运动:水上运动、球类运动、跳伞运动和舞蹈运动。当我展开 sk
我想在 H2 数据库中实现 B+ Tree,但我想知道,B+ Tree 功能在 H2 数据库中可用吗? 最佳答案 H2 已经使用了 B+ 树(PageBtree 类)。 关于mysql - H2数据库
假设我们有 5 个字符串数组: String[] array1 = {"hello", "i", "cat"}; String[] array2 = {"hello", "i", "am"}; Str
我是一名优秀的程序员,十分优秀!