A data structure is a way of organizing data in a fashion that allows particular properties of that data to be queried and/or updated efficiently.
0
votes
3answers
25 views
Calculating the height of a binary tree
I need help with the theory on calculating the height of a binary tree, typically the notation.
I have read the following article:
Calculating height of a binary tree
And one of the posts gives the ...
-6
votes
0answers
42 views
Linked lists in c crisis newbie here [closed]
I've just started studying linked list and i ran into this exercise seems interesting but i don't even know where to start i think it will be a challenge even for you. :p(raising morale)
its called ...
-2
votes
0answers
25 views
Matlab How to convert arrays of structures into several numerical matrices?
I am new in matlab and I am not familiar with array of matrices. I have a number of matrices nx6:
<26x6 double>
<21x6 double>
..
Each matrix is of this type:
>> Matrix{1,1}
A ...
0
votes
1answer
28 views
Marking few items from a list based on a database
I have a list of n items(in multiple categories) like
Category A
1
2
3
Category B
1
2
....
and when a user logs in, I know m (m <=n) of them should be marked ...
3
votes
1answer
41 views
Structures in VB .NET like COBOL
I'm converting a COBOL program to VB .NET.
Is there any way to use the structures in VB NET like COBOL does?
In example:
COBOL:
01 VAR1
10 VAR11 PIC X
10 VAR12 PIC X
MOVE 'AA' TO VAR1
...
1
vote
3answers
95 views
Confused in understanding recursion
I am little bit confused with the following code to find height of the tree and the code to find sum of n nos recursively, which is below this. What does the lheight and rheight store, depending on ...
1
vote
1answer
28 views
What is the best structure to find which AABB boxes in a dynamic set collide with an arbitrary AABB box?
I have a set of dynamic AABB boxes whose positions and sizes are updated continuously. What is a structure I can use to get which AABB boxes of those are colliding with an arbitrary AABB box?
2
votes
2answers
47 views
Best data structure for a file with unknown variable types
My program reads in a file that is a list of program names followed by a comma and list of command line arguments for that program. I want to store each line separately so that I can sort them and ...
1
vote
2answers
34 views
Is it O(L1 + L2) or O(max(L1, L2))?
We have two lists of lengths L1 and L2. We have traversed both the lists one after the other. What will be the time complexity of overall operation?
Is it O(L1 + L2) or O(max(L1, L2))?
What is the ...
0
votes
3answers
55 views
deleting first node from singly linked list Java [closed]
I have a linked list data structure and I am testing the deleteInfo() function. However, when I try to delete the last item in the linked list, I get an error. The linked list grows by inserting from ...
0
votes
3answers
71 views
Finding Maximum of an interval in array using binary trees
I'm studying Binary trees! and i have a problem in this Homework.
I have to use binary trees to solve this problem
here is the problem :
You are given a list of integers. You then need to answer a ...
1
vote
2answers
57 views
Clojure - convert list into Java array
Is there any idiomatic way of converting Clojure list into Java array, other than first converting it to vector and using into-array (means, something other than (into-array (vec my-list)), as I don't ...
1
vote
2answers
39 views
How to concatenate and uniquify lists in matlab
I've got a matlab structure that looks like
pointlesshorror
ans =
{
[1,1] =
1 17 20
[2,1] =
2 17 18 21
...
[16,1] =
16 39 40
}
and another
misery = [1 ...
0
votes
1answer
17 views
Number of binary tree with n node and n-3 height
How many binary trees can find that have n Node and the height of these tress are n-3?
-4
votes
2answers
53 views
Remove minimum value from linkedlist [closed]
I need to remove the smallest element value from the linked list. Like
{8,4,7,2,9,4,5,3}
Becomes:
{8,4,7,9,4,5,3}
I wrote this :
public void RemoveMin() {
T min = list.getInfo();
for ...
0
votes
3answers
63 views
C++ - OOP implementation of linked list, I not sure why adding to end is not working for me, please advise
I am refreshing my knowledge of C++ OOP but not sure why I can get this traversal and adding to end of list up and running. Any advice on this context would be highly appreciated.
#include ...
1
vote
1answer
17 views
Missing type specifier On a Templated List Class using Templated Nodes
This is the Contents of Graph.h without the header protects and other Functions
template <class T> class Node{
public:
T data;
Node<T> *NextNode;
public:
Node();
Node(T ...
0
votes
0answers
47 views
leaves of binary search tree are lost after print is called
I have a program that keeps track of students information. The gui allows the user to insert, delete, retrieve, update and print. All the aspects work but the print function. It will print once ...
0
votes
1answer
39 views
Confusion in the differences between hashmap and hashtable
I have a confusion:
I have read in many posts that Hash-maps are implemented as binary search trees which makes the various operations time complexity of logarithmic order.
Hashtables on the other ...
3
votes
4answers
91 views
What data structure should I use to store a pair of strings in Java , if my goal is to find unique pairs?
I am a beginner in Java. I have some sample data of nodes:
A -> B
B -> F
C -> R
A -> B
B -> C
R -> C
I have already taken out 2 lists: [A,B,C,A,B,R] and [B,F,R,B,C,C]
...
1
vote
1answer
32 views
Django template: context for loop traversal
I am working of a context of this strucutre:
{
data:{
0000:{ "name": "foo" , "start": 0, "end":900}
1111:{ "name": "foo2" , "start": 23, "end":330}
2222:{ "name": ...
-1
votes
2answers
37 views
Under which condition we should put the reference of the same class as an attribute of that class [closed]
Under which condition we should put the reference of the same class as an attribute of that class.
For example following is my class
abstract class XYZ{
protected XYZ next;
public void setNext(XYZ ...
0
votes
1answer
21 views
Boost Serialization Tree Structure
I'm trying to build a tree like structure to hold a test made up of a series of questions.
The idea is that Test, Question, QuestionPart would all derive from the following class:
class Node
{
...
-5
votes
1answer
37 views
which tree is implemented in mysql database and how it it going to be balanced [closed]
which tree is implemented in Mysql database and how is it going to be balanced.
I am confused rather Btree is implemented on disk or red black tree.
1
vote
2answers
28 views
different units and design of datastructure
I am trying to write a program that calculates nutrition level in food.Suppose I have this data(may be incorrect)
10 grams of bread has 68 mg sodium.
1 medium slice is 50 grams.
1 cup of milk has 98 ...
0
votes
1answer
55 views
Want to know why i am getting seg fault
I have this code where i am trying to create many data structures based on the input, "gen" entered by the user. here is the code:
#include <iostream>
#include <algorithm>
#include ...
0
votes
1answer
29 views
creating structres based on the users input
i wanted to know if there was a way to create different structures based on the input of the user. FOr example consider this code
#include <iostream>
#include <algorithm>
#include ...
1
vote
3answers
72 views
Creating a ConcurrentHashMap that supports “snapshots”
I'm attempting to create a ConcurrentHashMap that supports "snapshots" in order to provide consistent iterators, and am wondering if there's a more efficient way to do this. The problem is that if ...
1
vote
1answer
40 views
Very small, persistent data structure
I'd like to make a very, very small, but persistent data structure that I can reference quickly server-side, and I'm not sure how.
Basically, what I want is an array that holds little structures that ...
3
votes
2answers
61 views
Tests for Basic Python Data Structure Interfaces
A fairly small question: does anyone know about a pre-made suite of Python unit tests that just check if a class conforms to one of the standard Python data structure interfaces (e.g., lists, sets, ...
0
votes
1answer
20 views
Fast Data Structure For Point Interval Lookups
I have an interesting problem I'm working on right now and wonder if anyone has had success in implementing high performance solutions to it.
I have a set of "intervals" meaning an array of arrays ...
2
votes
5answers
90 views
Maps (hashtables) in the real world
I'm trying to explain Map (aka hash table, dict) to someone who's new to programming. While the concepts of Array (=list of things) and Set (=bag of things) are familiar to everyone, I'm having a hard ...
0
votes
2answers
77 views
importance of data structure to embedded software engineer
I am an embedded software engineer. I never have used data structures like trees, graphs, or linked lists. I have used only circular buffers, arrays, etc. I am curious to know in which part of ...
0
votes
1answer
33 views
what's meant by abstract data type in data structure (ADT)?
while start studying data structure, I came to know about abstract data type as per definition " An abstract data type is defined as a mathematical model of the data objects that make up a data type ...
0
votes
2answers
63 views
Having two zero length array members at the end of structure in C
I know the usage of zero length arrays and I want to know if the following is an acceptable use
struct foo {
int id_num;
bool is_person;
char person_name[0];
char product_name[0];
...
-3
votes
2answers
69 views
Implementing a hash table in c# tutorial [closed]
I wish to build a hash table data structure in c#. Is there any good tutorial which I could follow? Thanks
0
votes
2answers
24 views
sorted result of inorder traversal on binary tree
I have a question about Binary Trees:
There is a binary tree T1 with n members.
When we run inorder traversal on T1 then we get a series from 1 to n (1,2,3,...n).
Now is T1 a BST (Binary ...
0
votes
1answer
61 views
Data structure to support optimal operations for a scoreboard
There is a scoreboard which is required to be maintained and supported by the following two operations:
void insert(string playerName, int score);
list<string> getPlayersByRank(int rank);
...
-1
votes
1answer
40 views
Searching a node in an AVL tree depending on balance factor and not the data
I know how to search a node with a particular key into an AVL tree . But I want to know how to search in an AVL tree with a balance factor of -2
Here is the code that I have tried.
#include ...
0
votes
3answers
33 views
Build a Tree Out of File Path, Is My Logic Correct?
I am trying to build a tree and I would like to link parent nodes to children based on a filepath like structure such as the one below, where The World is the root:
The World
The World/Asia
...
1
vote
2answers
63 views
C and string handling
FULL CODE http://pastebin.com/6bdVTyPt
My tree code was perfectly working until i found out i needed to validate the id that its not text so it had to be string
insertion function
string compare of ...
3
votes
7answers
121 views
how to read all 1's in an Array of 1's and 0's spread-ed all over the array randomly
I have an Array with 1 and 0 spread over the array randomly.
int arr[N] = {1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1....................N}
Now I want to retrive all the 1's in the array as ...
1
vote
3answers
93 views
How do I extract array values from hashes?
I'm struggling with a data structures in Ruby.
I have:
answers = [
{"val"=>["6"], "comment"=>["super"], "qid"=>["2"]},
{"val"=>["3"], "comment"=>[""], "qid"=>["1"]},
...
1
vote
1answer
51 views
how to convert a variable to string in matlab? [duplicate]
I have structure array
some_struct_var=struct( 'filed1', filed1, 'filed2', filed2 ,...)
I want to create a string
str=['The struct variable name is :' , some_struct_var]
with the name of ...
0
votes
1answer
31 views
Copy embedded structure to clipboard and retrieve it in win32
I am trying to implement clipboard operation (cut/copy/paste) on my win32 window. This window has a bunch of gdi objects drawn over it, and the window can have child controls inserted in it as well.
...
0
votes
3answers
36 views
How to assign values to store gender information?
I'm creating an application that stores some data about users. I was wondering which mapping of the gender is appropriate:
male - false; female - true
or
female - false; male - true
Is there any ...
0
votes
3answers
79 views
What are the differences between heap and red-black tree?
We know that heaps and red-black tree both have these properties:
worst-case cost for searching is lgN;
worst-case cost for insertion is lgN.
So, since the implementation and operation of ...
5
votes
2answers
128 views
Could I use a faster data structure than a tree for this?
I have a binary decision tree. It takes inputs as an array of floats, and each branch node splits on an input index and value eventually taking me to a leaf.
I'm performing a massive number of ...
1
vote
2answers
30 views
Location hierarchy data structure
Data Structure or Data Model for location hierarchy
I have the following location types,
Airport
City
State
Country
Hierarchy is Country has a state, State has a City and a City has airport.
...
1
vote
3answers
141 views
C++ STL set implementation
Why is the C++ set implemented as a binary tree instead of as a hashset, which can provide average case complexity of O(1) as compared to the O(log n) provided by a binary tree?




