Looks like removing top works.
parent
dc1fa3f381
commit
9002bf7afb
|
@ -1,3 +1,4 @@
|
||||||
|
#include <limits.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
@ -111,40 +112,99 @@ void dump_heap(list *q) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
list* node_add(list *q, long key) {
|
list* node_union(list *q, node *b) {
|
||||||
list *c = NULL;
|
list *bl,*a = q, *c;
|
||||||
list *a = q;
|
|
||||||
node *b = node_create(key);
|
|
||||||
list *bl;
|
|
||||||
|
|
||||||
if (!q) {
|
if (!q) {
|
||||||
a = (list*)malloc(sizeof(list));
|
bl = (list*)malloc(sizeof(list));
|
||||||
a->node = b;
|
bl->node = b;
|
||||||
return a;
|
return bl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int added = 0;
|
||||||
|
bl = a;
|
||||||
while (a) {
|
while (a) {
|
||||||
if (a->node->lvl > b->lvl) { // it a always will be bigger or equal
|
if (a->node->lvl > b->lvl) { // it a always will be bigger or equal
|
||||||
list *el = (list*)malloc(sizeof(list));
|
list *el = (list*)malloc(sizeof(list));
|
||||||
el->node = b;
|
el->node = b;
|
||||||
el->next = a;
|
el->next = a;
|
||||||
return el;
|
return el;
|
||||||
} else {
|
} if (a->node->lvl == b->lvl) {
|
||||||
c = a->next;
|
|
||||||
a->node = node_union_same_lvl(a->node, b);
|
a->node = node_union_same_lvl(a->node, b);
|
||||||
bl = a;
|
bl = a;
|
||||||
b = a->node;
|
b = a->node;
|
||||||
a = c;
|
a = a->next;
|
||||||
|
added++;
|
||||||
|
} else {
|
||||||
|
bl = a;
|
||||||
|
a = a->next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return bl;
|
if (!added) {
|
||||||
|
list *el = (list*)malloc(sizeof(list));
|
||||||
|
el->node = b;
|
||||||
|
el->next = NULL;
|
||||||
|
bl->next = el;
|
||||||
|
return q;
|
||||||
|
} else {
|
||||||
|
return bl;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int node_del(node *q) {
|
list* node_add(list *q, long key) {
|
||||||
// TODO
|
node *b = node_create(key);
|
||||||
return -1;
|
|
||||||
|
return node_union(q, b);
|
||||||
|
}
|
||||||
|
|
||||||
|
int node_del(list **q) {
|
||||||
|
list *t = *q;
|
||||||
|
long maxValue = INT_MIN;
|
||||||
|
node *maxTree = NULL;
|
||||||
|
|
||||||
|
while (t) {
|
||||||
|
if (!maxTree || t->node->key > maxValue) {
|
||||||
|
maxValue = t->node->key;
|
||||||
|
maxTree = t->node;
|
||||||
|
}
|
||||||
|
|
||||||
|
t = t->next;
|
||||||
|
}
|
||||||
|
|
||||||
|
// we have max element and tree now
|
||||||
|
|
||||||
|
t = *q;
|
||||||
|
|
||||||
|
if (t->node == maxTree) {
|
||||||
|
printf("Removed maxtree is the beginning\n");
|
||||||
|
t = t->next;
|
||||||
|
} else {
|
||||||
|
printf("Removed maxtree is not the beginning\n");
|
||||||
|
while (t && t->next && t->next->node != maxTree) {
|
||||||
|
t = t->next;
|
||||||
|
}
|
||||||
|
|
||||||
|
t->next = t->next->next;
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("New list pointer 0x%x\n", t);
|
||||||
|
|
||||||
|
// we removed the maxTree from the list
|
||||||
|
|
||||||
|
node *c = maxTree->child;
|
||||||
|
node *b;
|
||||||
|
while (c) {
|
||||||
|
b = c->right;
|
||||||
|
c->right = NULL;
|
||||||
|
t = node_union(t, c);
|
||||||
|
c = b;
|
||||||
|
}
|
||||||
|
|
||||||
|
*q = t;
|
||||||
|
|
||||||
|
return maxValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -175,8 +235,9 @@ int main() {
|
||||||
fprintf(stderr, "There is nothing to delete - heap is empty\n");
|
fprintf(stderr, "There is nothing to delete - heap is empty\n");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
// TODO: long key = node_del(q);
|
|
||||||
// printf("Removed element: %d\n", key);
|
long key = node_del(&q);
|
||||||
|
printf("Removed element: %d\n", key);
|
||||||
} else {
|
} else {
|
||||||
// handle unknown command
|
// handle unknown command
|
||||||
fprintf(stderr, "Got unknown command %s\n", cmd);
|
fprintf(stderr, "Got unknown command %s\n", cmd);
|
||||||
|
|
Loading…
Reference in New Issue