-2
votes
0answers
28 views

some questions about binary search tree

A complete binary search tree CBT of 315 nodes of integers is store in an array (assuming that the storage will start at index 1). is level of a binary tree equal to depth of a binary tree? how many ...
0
votes
2answers
64 views

Path of the diameter of a binary tree

I have a binary tree and a method for the size of the longest path (the diameter): int diameter(struct node * tree) { if (tree == 0) return 0; int lheight = height(tree->left); int ...
0
votes
2answers
40 views

C: Why can't I change the top binary tree node in a non-main method?

I think this is more of a pointer problem than a binary tree problem. As an exercise I was re-creating a guessing/learning game in C using a binary tree. I had a method, traverse, which would go ...
0
votes
1answer
90 views

Inserting an element in Binary Tree

Tried exploring a lot over the net, but could get any help, Everywhere its like adding a node to the Binary Search tree. Question: Requesting for algorithm and code snippet for adding a node to the ...
0
votes
1answer
55 views

Syntax Errors when implementing binary search tree (C)

I've been working on implementing a binary search tree in C for a homework assignment in my programming class. After writing this much of the code and compiling in Visual Studio 2010, I get numerous ...
0
votes
4answers
277 views

binary tree recursively search c code [not Binary Search Tree]

The problem with my code is that,when a left child value is searched then due do to recursion levels it goes back and checks the right child.And the return gets incorrect. I can't find a way to get ...
0
votes
1answer
34 views

Bus Error 10 on Mac when creating a binary tree in C

I am getting bus error when i trying to create a binary tree using structures in C. Please suggest me a solution to over come this bus error. I am compiling on Mac OSX. #include <stdio.h> ...
0
votes
2answers
50 views

traverse x number of nodes inorder

I know this is probably a simple question but it's been a while since I've done any C programming. I am trying to perform an inorder traversal on x nodes where x is some number I pass to the ...
1
vote
5answers
151 views

Inserting node in binary tree in C

I am learning C and found a basic tree implementation in my C book: #include <stdio.h> #include <stdlib.h> struct tree_node { int data; struct tree_node *left_p, *right_p; }; struct ...
0
votes
1answer
304 views

Delete in Binary search tree in C

I have implemented BST in C. Insert and lookup works fine. But delete has issues when deleting the root node. I'm not able to free the pointer to the root node. I could if I pass it as a double ...
1
vote
2answers
150 views

Finding left most node in a binary tree

I need to find the left most node in a binary tree. It may sound naive but it isnt. I tried this but i think it will fail : Node* findLeftMostNode(Node* root){ if(root->left==null) ...
0
votes
1answer
65 views

Re-declaring struct

I'm trying to avoid globals using twalk() in search.h As you can see twalk callback a function but fails to include a void * param /* Walk the nodes of a tree */ void twalk(const void *vroot, void ...
1
vote
0answers
118 views

C - Binary tree of threads

I'm using the array implementation for simulating a binary tree of threads. Here's some of my code: void *genThreads(threadData *b) { if (final level is reached) { // print something ...
0
votes
1answer
62 views

Binary Tree Node - GCC Warning - Incompatible Types

I'm trying to create a new node for a binary tree, and I'm getting errors when I try to make an assignment to ->left and ->right. typedef struct bin_node_t { data_t data; bst_key_t key; ...
0
votes
2answers
186 views

Binary tree insertion sort in C

Hey can anyone explain how to sort a binary tree using insertion sort in C language where time complexity is an issue. I am just learning to code. Thank you guys!
-1
votes
2answers
74 views

binary search tree node always NULL

I know this may seem simple, but I have been scratching my head for the last few hours trying to figure out why whatever I do, thisNode is always NULL. Because this is null, it means that nothing ...
1
vote
3answers
253 views

C binary search tree implementation - insert

I am trying to create a program which which takes a list of words as an input, and sorts them into a binary tree, in order to allow them to be found, e.g. like a dictionary. This is what I have done ...
0
votes
2answers
83 views

Binary tree implementation

I seem to be getting a segmentation fault, and it seems as though the error is coming from the call to tra, but I am unable to see exactly what is wrong with the code that I have written. Really have ...
1
vote
2answers
50 views

Confused about accessing content of binary tree node with pointer

If I have a struct that looks like this: struct node { int key_value; struct node *left; struct node *right; }; And I have a search function that looks like this: struct node *search(int ...
0
votes
3answers
102 views

binary tree: user decides whether it should be a number tree or a word tree in c programming

in my assignment i have to create a binary tree where the user inputs the details. the first thing the user does is enter 1 if they want to create a number tree or 2 if they want a word tree. the ...
1
vote
2answers
223 views

Minimum value not in a binary tree?

I'm trying to find a way a way to find the minimum positive ([0, INT_MAX)) (the largest integer) value not in the binary search tree. The tree has all positive integers. I was thinking of traversing ...
-1
votes
3answers
441 views

Implementing the Binary Tree in C

I am trying to implement the Binary tree in C.Firstly inserting the values and then traversing them into the Preorder.But when i call the function preorder() then it's giving me infinite loop with ...
2
votes
2answers
354 views

Making a linked list from a binary tree using Preorder Traversal

I want to add elements to a Linked List while Preorder Traversaling on a Binary Tree. I do not want to destroy the BT, just make a copy of the elements in a linked list. This is my code snippet. void ...
-1
votes
1answer
107 views

Saving a binary search tree to disk

When trying to save the contents of a tree to file, nothing is saved and I don't know why. These are the function calls I'm making: insert(tree, cust.id, filePos); saveTree(tree, "cIndex.dat", 0); ...
1
vote
1answer
101 views

I can't for the life of me figure out why my C program is crashing

I have an assignment for uni in which I have to implement a binary search tree. It has to take information and write that to disk, and keep an index stored in the tree. However, whenever I call a ...
0
votes
1answer
124 views

Loading Customers From File To A Binary Tree using C [closed]

Basically, I need to load all the customers from customers.dat and put them in a binary tree. Also whenever a user adds a customer it should also be added to the binary tree. I managed to code the ...
0
votes
1answer
29 views

Batch Update products

I'm doing a orders program and I have a binary search tree for products, item contain product name, stock quantity, order quantity, and price. When I creeate an order, the order quantity in the ...
0
votes
2answers
54 views

Recursive data structures going wrong - incompatible types when assigning List from type struct *l

I've made a binary tree where there are essentially three levels of structs: typedef struct l { char n[15]; struct l *next; } List; typedef struct { char rname[20]; char lname[20]; List ...
0
votes
1answer
266 views

Saving a Binary tree to a file in C

I am currently doing a Customers program when a user can add/edit/search/list customers. I decided to use a binary tree as the backbone of this program. My idea was to then save each item in the tree ...
-2
votes
1answer
186 views

How to delete a single node from a Binary Search Tree using Single Linked List? [closed]

I am trying to delete a particular give node from the Binary Search Tree using Single Linked List. But I am not able to figure out how to adjust the hierarchy after freeing a node. I didn't add code ...
0
votes
1answer
466 views

Implementing BinarySearchTree using Single Linked List

I have the below code which I am using to implement BinarySearchTree. Somehow it doesn't build the binarytree.Can anybody help what is the issue ? typedef struct BinarySearchTree { struct ...
1
vote
5answers
404 views

Converting a Binary Tree into an Array (and later save) in C

So, I'm doing this customer application where you can create/Modify/Search/List Customers. Later on this expands to linking customers to products with an order and so on, but my focus right now is ...
4
votes
1answer
367 views

C standard binary trees

I'm pretty much of a noob in regards to C programming. Been trying for a few days to create a binary tree from expressions of the form: A(B,C(D,$)) Where each letters are nodes. '(' goes down a ...
1
vote
1answer
144 views

balancing binary tree by rotation ANSI C

I have a binary tree with data from a simple list and now i need to balance it but it keeps giving me the error "segmentation fault (core dumped)" my balance code is: NodoAB * balance(NodoAB *A){ ...
-2
votes
4answers
201 views

With C, how do I create a binary tree and print it out from smallest to largest (without recursion)? [closed]

I was wondering: how do I create a binary tree and print it out from smallest to largest (without recursion)? I can visualize how to do it with recursion but without recursions and with while and for ...
-1
votes
1answer
591 views

Building an expression tree using a stack and a binary tree c

I am given an arithmetic formula containing operators +, -, *, / and parentheses (which might or might not change the natural precedence of operators). An example would be the following one: a / b + ...
0
votes
1answer
44 views

runtime error : to create a binary tree

I m new to coding and i m trying to create a binary tree obtianed form the array. When i try to run it , i get a runtime error. Can someone explain what is wrong with this code. tnode is the struct ...
0
votes
3answers
128 views

C Error: dereferencing pointer to incomplete type

So im getting a "Line 51: error: dereferencing pointer to incomplete type" when running this
2
votes
3answers
48 views

Insertion error or pointer error in Binary Tree

When I try to add a number into my binary tree, appears the famous Segmentation Fault. I guess the error is the pointer in function inserir_no. Maybe I should use a pointer aux. #include ...
0
votes
2answers
81 views

twalk without globals

I am trying to traverse a binary tree using twalk() with <search.h> #define _GNU_SOURCE /* Expose declaration of tdestroy() */ #include <search.h> #include <stdlib.h> ...
1
vote
0answers
391 views

How do I output a binary tree's data (all 4 types of traversal) to a file?

I have written a program(for homework)that creates a binary search tree. It will read from a file and on each line take a string and an int. ex. I 23, where I tells the program to insert and 23 is ...
1
vote
2answers
522 views

Binary Tree Recursive Function

I need to print out a binary tree that looks like this: --------x------- ----x-------x--- --x---x---x---x- -x-x-x-x-x-x-x-x xxxxxxxxxxxxxxxx Using recursion to print the left side of the line and ...
2
votes
3answers
1k views

Generic binary search tree in C

I have the implemented a binary search tree but I also want to make it generic. The code is the following: typedef struct treeNode { int data; struct treeNode *left; struct treeNode *right; } ...
0
votes
1answer
88 views

seg fault in BFS traversal of BST

I have implemented a binary tree and its BFS traversal. The program is below: struct elemq{ int ele; struct elemq *left; struct elemq *right; }; struct que{ struct elemq *ss; ...
0
votes
4answers
589 views

Creating a binary search tree in C99

I've got a programming class assignment due tonight at 8 PM CDT that I'm having trouble with. We are to take a list of the following numbers via reading a file: 9 30 20 40 35 22 48 36 37 38 ...
0
votes
2answers
291 views

non recursive binary tree insert() method not working

I have written a binary tree code for inserting elements into it in non-recursive method. The code is not working as intended. Regardless of how many times I debug the code, nothing seems to be wrong ...
2
votes
2answers
205 views

access element of struct passed into a void* pointer

I'm working with a binary search tree data structure to sort a series of structs with the type definitions: typedef struct { char c; int index; } data_t; typedef struct node node_t; typedef ...
0
votes
2answers
135 views

Unable to print all the elements in the binary tree

#include<stdio.h> #include<stdlib.h> #include<string.h> #include<ctype.h> struct node *create_node(int ); struct node *add_node(struct node *,int ); void asce_order(struct ...
-1
votes
3answers
68 views

how to declare a new structure

I am trying to implement a binary search tree by reading lines from a file. while(fgets(p, 1024, fp)) { struct node child; child.str = (char *)malloc(plen); ...
1
vote
1answer
2k views

Implementing Min Heap in C - using array?

I am trying to learn and implement a min-heap to solve a problem: Loop that creates doubles and insert them into sorted array, in C Basically, I start with a set of doubles, sorted from smallest to ...

1 2 3