2
votes
0answers
128 views

Tree Traversal, generate a linkedlist from tree preorder and write test case for it

I am looking for best solutions for the following question. We are given a binary tree, we need to generate a linked list from the tree using pre order traversal. Also write a test case to check ...
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 ...
3
votes
1answer
202 views

How to count number of nodes under selected user on specific Level?

I have a MySQL database and I am storing user records in the table structure below User_mst ------------------- id user_name parent_id left_id right_id position (keyword "left", "right" as ...
1
vote
3answers
883 views

what is the difference between node structures of double linked list and binary tree?

I was asked in a interview about the difference between node structures of Doubly linked list and binary Tree. Doubly Linked List Struct typedef struct { int data; struct node * next; struct node ...
0
votes
1answer
79 views

How to display a LinkedBinaryTree

I need to understand the best way to display my linkedBinaryTree. right noe the driver is passing in integers as elements to each node of the tree, For the toString i have tried the following snippet ...
1
vote
1answer
592 views

Insert values in Binary Search Trees

I was trying to write a method which set values in a binary search tree. I have implemented a simple technique of recursion to add nodes in the tree. But when I input the values and ran the code I got ...
0
votes
1answer
663 views

Inserting a node into a binary search tree/linked list?

Ok, I am beyond exhausted with this problem, so I figured I would get some outside help. The program holds a "database" of Personnel which include Employees and Students. Each student has a binary ...
2
votes
1answer
364 views

Use of circular linked list as the “free list” v/s balanced binary search tree during dynamic storage allocation and deallocation

Drawback in linked list is that to malloc() a chunk ,memory allocator has to search the link list and then if that address is found, return it.. So why not use a binary tree to reduce the search-time ...
1
vote
4answers
779 views

C# storing linked list in binary trees nodes

i would like to develop a binary tree structure such that every single node stores a key and a linked list. the reason behind such implementation is that i would like to do a search within the binary ...
2
votes
5answers
338 views

Binary data structure for fast searching

I'm looking for a binary data structure (tree, list) that enables very fast searching. I'll only add/remove items at the beginning/end of the program, all at once. So it's gonna be fixed-sized, thus I ...
1
vote
3answers
19k views

C LinkedList inserting node at the end

I'm having some trouble with my insertion method for a linked list in C. It seems to only add at the beginning of the list. Any other insertion I make fail. And this CodeBlocks debugger is so hard to ...
0
votes
3answers
1k views

Convert Binary Tree in Zigzag order to a Doubly linked list

Ii have a problem. i have to convert a Binary Tree in its zigZag format to a doubly linked list. Given BT: [1] [2] [3] [4] [5] [6] ...
0
votes
5answers
606 views

How to rebuild a BST from a file

My C++ program creates an unbalanced BST from user input, and saves it do disk. It does this by first indexing each node by doing a pre-order traversal and assigning each node a unique number. Next, ...
4
votes
5answers
850 views

How to print out a BST in C++

My C++ program creates a binary search tree. I know how to print out the values in pre-order, post-order, and in-order. However, I want to do something a little more difficult. I want to print out ...
3
votes
5answers
4k views

How to delete a binary search tree from memory?

I have a BST which is a linked list in C++. How would I delete the whole thing from memory? Would it be done from a class function?
1
vote
3answers
602 views

Generic data structure libraries for C?

Which libraries do you guys use for generic data structures like linked list, binary tree etc.? What are the most common, efficient libraries? Can you name some?
3
votes
7answers
3k views

Advantages of linked lists over binary trees?

The title is mostly self-explanatory: what are the advantages of linked lists over binary trees? The only case I can think of in which a linked list is more efficient is for iterating over every ...
0
votes
2answers
1k views

How to create a linked list of nodes that are contained in the max-Depth of a Binary Tree using Java

I've already created the Binary Tree and Linked list classes, I'm just in need of an algorithm that prints ONLY the nodes of the largest path. The height and size of the Binary Tree are already stored ...
39
votes
10answers
40k views

Binary Trees vs. Linked Lists vs. Hash Tables

I'm building a symbol table for a project I'm working on. I was wondering what peoples opinions are on the advantages and disadvantages of the various methods available for storing + creating a symbol ...