我尝试像树一样创建 BFS。我做了树并将孩子排队。
我在这里写了代码https://github.com/cengek/CKDatastruct。
但奇怪的是,当我使用 Windows 和 MinGW 编译它的朋友时,它返回错误。它不会发生在 OSX 和 Linux 中。
我的朋友说当我使用 malloc 时它变成了错误。
我不知道出错的具体代码在哪里,但我认为它在这里
这是我将树的孩子放入队列的部分
while (isEmpty(antrianNodes) != 1) {
//tampilkan isinya
printf("%c,", antrianNodes.first->paket.s->c);
simpul * now = antrianNodes.first->paket.s;
simpul * nodePertama = now;
//jika punya anak
//masukkan child dari node alamat di queue ke dalam queue sekarang
if(now->child != NULL){
simpul * nowchild = now->child;
//jika punya saudara
if(nowchild->sibling != NULL){
//looping memasukkan anak-anak
while (nowchild->sibling != now->child) {
add(&antrianNodes, nowchild);
nowchild = nowchild->sibling;
}
//masukkan yang terakhir
add(&antrianNodes, nowchild);
}else{
//tak punya saudara masukkan saja satu
add(&antrianNodes, nowchild);
}
}
del(&antrianNodes);
}
并在这里将孩子添加到队列中,以便我可以处理它。它做孩子的打印。
void add(queue *Q, simpul *s){
elemen * baru = (elemen *) malloc(sizeof(elemen));
baru->paket.s = (simpul *) malloc(sizeof(simpul));
baru->paket.s = s;
baru->next = NULL;
if(isEmpty(*Q) == 1){
(*Q).first = baru;
(*Q).last = baru;
}else{
(*Q).last->next = baru;
(*Q).last = baru;
}
(*Q).jumlahElemen++;
}
我认为这是队列和树的普通代码。
老实说,我不知道确切的部分在哪里,因为它在每个操作系统中都有奇怪的不同,我尝试在 ideone 中编译它并给出正确的结果,如http://ideone.com/vVNOe
我朋友说windows的错误是这样的
Problem signature:
Problem Event Name: APPCRASH
Application Name: main.exe
Application Version: 0.0.0.0
Application Timestamp: 4fa665b6
Fault Module Name: main.exe
Fault Module Version: 0.0.0.0
Fault Module Timestamp: 4fa665b6
Exception Code: c0000005
Exception Offset: 000015e0
OS Version: 6.1.7601.2.1.0.256.48
Locale ID: 1033
Additional Information 1: 0a9e
Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
Additional Information 3: 0a9e
Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
Read our privacy statement online:
http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
If the online privacy statement is not available, please read our privacy statement offline:
C:\Windows\system32\en-US\erofflps.txt
每个操作系统都执行不同的malloc吗?还是只是我的代码出错了?
最好的问候吉里普