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.

learn more… | top users | synonyms (3)

-3
votes
0answers
14 views

Is it possible to detect route collision on a quadtree?

I'm trying to detect common routes taken and have my lat/long stored in a quadtree, but not able to see how can I do it.I'm using geohashing library with python. In that I encode each point on a ...
0
votes
1answer
37 views

What is wrong with my contains function?

I'm trying to create a map to store key-value pairs. I wrote a ContainsKey function – if I find the key then return true else false. I believe something is not right at my EQ statement, but I don't ...
2
votes
2answers
88 views

In C#, is a dictionary whose keys are of type Type slower than a dictionary whose keys are of type ulong?

I currently have the following: ConcurrentDictionary<ulong, MyEventHandler> eventHandlers; and an indefinite number of classes: class MyClass1 { public const ulong MyKey = 0; ... } ...
1
vote
1answer
27 views

C++: Design data structure(s) to store multi-keyed object set to be able to collect and traverse a hyper-planes of that set

I'm trying to implement a storage for a large series (hundreds of millions) of results of alike scientific experiments. An experiment has many discrete-valued attributes (like lattice point of ...
-1
votes
1answer
48 views

Read data from hyperterminal in C (ASCII )

I need a help to develop a C code to read data from terminal(terminal accepts only ASCII) and to convert this ascii to integer. Do you know or where to find the information or any suggestion? The ...
1
vote
1answer
31 views

What's the correct data structure for 2-prop sorted list?

I am writing a simple handless ui framework, in which i need to dispatch all the message by my own. Every widget has a list of child, which has two properties: paint order(the order to recieve paint ...
0
votes
1answer
40 views

pure C generic bidirectional hashtable with specific requirements

I have to design and implement a data-structure, which is like bimap, bidimap or dualmap, i.e. hashtable in which values can be used to extract keys and of course in reverse direction. Normally, it ...
0
votes
2answers
31 views

Converting a single user application to a multi user application

I am working on a legacy C application that is currently single user. I want to modify it so that it is multi user. The current application makes uses user permissions to load relevant data (for the ...
1
vote
4answers
36 views

What data structure to use for near realtime lookup on large data set?

I have a dataset of 20 million people whose location is known. In near realtime, I want to know if the query I receive is in this set or not, and if it is, the actual location. Essentially, I want a ...
0
votes
0answers
29 views

How to store complex data structures in MySQL and prevent duplicates?

MySQL 5.5 I am writing a system for storing queries. Every time a person submits a search, it can be saved in the database. There can be additional actions connected to the search. I.e. "look for ...
0
votes
1answer
26 views

User Structure, Multiple User Types

I am currently developing a new database / web application for our school. I will need to supply a little bit of background information to make my question a little more relatable. There are many ...
0
votes
3answers
30 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
49 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 ...
-3
votes
0answers
29 views

Matlab How to convert arrays of structures into several numerical matrices? [closed]

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
31 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
46 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
100 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
29 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
49 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
39 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
56 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
72 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
60 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
18 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
55 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
64 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
18 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
48 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
93 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
33 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
38 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
73 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
41 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
62 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
79 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
35 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
64 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
72 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
62 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
42 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 ...

1 2 3 4 5 163