The recursive-datastructures tag has no wiki summary.
-1
votes
2answers
88 views
Recursive call instead of multiple for loop calls C++ [closed]
On the Following example with 5 loops I am able to obtain each individual index to access into multi dimensional array. Is there any way for dynamic systems if I don't know the dimension of the array, ...
5
votes
2answers
175 views
Operator[] Overloading in MultiDimensional Arrays c++
When I call: a7[0][1][100];
I am able to obtain the first index '0' in the operator[] but as index I won't able to obtain other index values 1 and 100 as recursively. How could I able to use ...
1
vote
2answers
49 views
How send recursive data structure to OpenGL shader?
how can I send recursive data structure, like octree, to OpenGL GLSL shader?
I think, I can send it as array of nodes and use indexes instead of pointers, is it a good idea? Are there other options to ...
2
votes
2answers
44 views
powershell move files to remote location up a level if a file doesn't exist
I would like to recursively search a directory and move the contents of a folder if a file doesn't exist to a remote server and remove a folder level
e.g only copy the contents of folder 2 because ...
0
votes
3answers
71 views
Looping through recursive list in C
I've just started out with C and I think the whole pointers/malloc/free is driving me mad. I tried to define a simple linear recursive data structure and loop through it, printing each element that ...
0
votes
1answer
70 views
Defining variable for recursive data structure in C
I have a function sortbyName that returns a recursive data structure sortedList. sortList itself contains a pointer to another recursive data structure stud_type and they are all defined as below.
...
-2
votes
1answer
50 views
How do I implement a tree shaker operation? [closed]
I need an operation which I call shake_tree. I have implemented it using a recursive algorithm, using only basic ruby-Fortran (referencing the old quote "You can write Fortran code in any language."), ...
0
votes
0answers
75 views
Implementing Symbolic code with Numerical software such as Matlab?
This code is a multilinear implementation provided by my instructor Antti in a team project, programmed in Mathematica. My other team members have created a massive amount of code with novel list-list ...
2
votes
2answers
76 views
Jagged dictionary of dynamic depth?
I am trying to extract from a series of strings which represents depth like:
'foo/bar/x'
'foo/bar/baz/x'
'foo/bar/baz/x'
'foo/bar/lol/x'
Where x is a number I don't care about. I've got as far as ...
0
votes
2answers
92 views
Why does this method cause an Infinite Recursive call?
I'm struggling to understand why this class is not functioning. It was part of an assignment for a course on Data Structures(EDIT: The deadline for the assignment has passed, I just want to figure it ...
1
vote
2answers
47 views
php Iterator - how to save all second to last elements
I am at a loss. I've googled, searched on here, read the php manual for hours but I cant come up with a solution.
I got the following array structure:
[x] => Array
(
...
...
0
votes
1answer
50 views
Possible Bug in Migration for EF 6 Alpha 3 on recursive relationship?
I had to define a recursive relationship on a composite key. After much trials, I ended up with this:
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
...
4
votes
2answers
189 views
How do I generate recursive data structures on variadic templates?
I am trying to grasp the technique of recursive data-structure generation using TMP with this question.
Question
Suppose I have a variadic template template<typename... Ts> struct my_sets { ...
0
votes
0answers
70 views
peg solitaire solitaire solver by iteration
I have understaken the following as an exercise in object oriented programming as I'm new to it:
Solve peg solitaire in java.
The idea is to use tree structure in which each node corresponds to a ...
1
vote
1answer
51 views
Does this code create multiple instances of the function?
I am learning how to build a parent/child category list. I found a great tutorial and have implemented the following code:
while($row = $tree_sth->fetch()){
$rows[$row['id']] = ...
7
votes
3answers
155 views
Is there an elegant way to have functions return functions of the same type (in a tuple)
I'm using haskell to implement a pattern involving functions that return a value, and themselves (or a function of the same type). Right now I've implemented this like so:
newtype R a = R (a , a ...
2
votes
4answers
150 views
Parse recursive data with parsec
import Data.Attoparsec.Text.Lazy
import Data.Text.Lazy.Internal (Text)
import Data.Text.Lazy (pack)
data List a = Nil | Cons a (List a)
list :: Text
list = pack $ unlines
[ "0"
, "1"
, "2"
, ...
1
vote
3answers
106 views
How to handle big arrays?
I am developing an application in PHP for which I need to implement a big file handler.
Reading and writing the file is not a problem, but checking the content of the file is a problem.
I built a ...
0
votes
2answers
55 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 ...
7
votes
2answers
140 views
Representing a directory tree as a recursive list
I am stuck with a certain task. What I want is a function that, given a directory path, would return a recursive-list as an output.
The output should be of the form ...
1
vote
1answer
67 views
Phonecall Database SQL Queries
I have been working on a database project for a phone call, here is a quick view of the diagram, callid is autoincremented in the call table, and sessionid is auto incremented in the session table, ...
1
vote
2answers
63 views
Representing a chain of nodes in a human readable way
I'm trying to represent a subway map type thing that has to be drawn progressively (like its growing).
My code all works perfectly but its unreadable. Basically it's a tree structure with recursive ...
2
votes
2answers
379 views
Recursive struct
Do I need to use typedef in order to build recursive structs? I tried to use the following code without success:
struct teste
{
int data;
int data2;
struct teste to_teste;
};
0
votes
1answer
215 views
How to turn this PHP array structure into multi-dimensional tree?
I have a 2-dimensional PHP array which I need to turn in to a tree. The 'path' value in each inner-array is the enumerated path to the current node. (I got this idea from Bill Karwin's book on SQL ...
2
votes
2answers
178 views
Recursive Types in Scala with a List
Similarly to mutually recursive types in scala I am trying to create a mutually recursive type in Scala.
I am trying to make a graph defined with this type (which does compile) :
case class ...
4
votes
1answer
341 views
Memoization Recursion C++
I was implementing a recursive function with memoization for speed ups. The point of the program is as follows:
I shuffle a deck of cards (with an equal number of red and black
cards) and start ...
1
vote
2answers
300 views
How to count the digits of a given number in scheme?recursively and iteratively
I know how to calculate the sum of the digits of a number:
(define (sum-of-digits x)
(if (= x 0) 0
(+ (modulo x 10)
(sum-of-digits (/ (- x (modulo x 10))
...
14
votes
2answers
297 views
Why inductive datatypes forbid types like `data Bad a = C (Bad a -> a)` where the type recursion occurs in front of ->?
Agda manual on Inductive Data Types and Pattern Matching states:
To ensure normalisation, inductive occurrences must appear in strictly positive positions. For instance, the following datatype is ...
3
votes
1answer
150 views
Recursively dir() a python object to find values of a certain type or with a certain value
I have a complex Python data structure (if it matters, it's a large music21 Score object) which will not pickle due to the presence of a weakref somewhere deep inside the object structure. I've ...
0
votes
1answer
2k views
Tower of Hanoi - n peg solution algorithm
I was implementing the tower of hanoi problem to understand more about recursion. I was able to implement it using the 3 peg case, however, when I wanted to use more pegs (to generate less moves) I ...
0
votes
1answer
254 views
Serializing a Recursive Class with Jackson (JSON)
I've defined a tree of HashMaps like so:
public class HashTree<K, V> extends HashMap<K, HashTree<K, V>> {
private static final long serialVersionUID = 1L;
boolean isLeaf = ...
1
vote
3answers
203 views
C# recursive programming with lists
I am working on a program where each item can hold an array of items (i'm making a menu, which has a tree-like structure)
currently i have the items as a list, instead of an array, but I don't feel ...
0
votes
1answer
76 views
CakePHP deeper recursive
I have the following problem.
I have the following relationships:
A->B->C->D
With the respective relations in models.
I need to get all the "D" belonging to "A"
...
0
votes
1answer
837 views
Entity framework : Recursive update Parent-Child gives me duplicates
Given the following tables (in screenshot FK from Locations to Customers is not visible, but it's there, just didn't refresh...):
And my mapping:
protected override void ...
0
votes
1answer
81 views
find more than one item in a list using binary search
this is what i have done but this only locates one item in the list i want to print out both indices of item 36
please help this is what i have done so far
if the way i posted this or my question ...
0
votes
2answers
202 views
The rope data structure, redundancy on wikipedia or am I missing something?
Why are there duplicate nodes like 9, 1 and 6 in the wikipedia article on rope?
Am I missing something, or those nodes are fully redundant?
0
votes
1answer
80 views
Algorithms and generalisation of functions [closed]
I admit I'm little bit poor in functions in mathematics.
But I'm in real urge to get this riddle out.
how to express x(n)=x(n-1)+x(n-2)+1 where n>1 and x(0)=0 and x(1)=1.
in terms of function ...
0
votes
1answer
186 views
data structure for line segment splitting and merging
I am writing a Qt application to enable generation of signal files using a GUI. The GUI has a canvas that allows a user to draw a new signal. Id like a signal to be defined as a set of contiguous line ...
0
votes
0answers
151 views
Generating a child tree structure from JPA
I have a flat table structure...
ORGANIZATION_ID
...
PARENT_ORGANIZATION_ID
...
that I am trying to turn into a tree structure depending on the OrgID that I pass inn... For instance, if I have a ...
15
votes
2answers
198 views
Initializing circular data in C. Is this valid C code according to any standard?
I wanted to see if I could initialize a global variable to point to itself:
#include <stdio.h>
struct foo { struct foo *a, *b; } x = { &x, &x };
int main()
{
printf("&x = %p, ...
0
votes
1answer
94 views
Populating a tree recursively with database contents
I am using an ORM that uses POCOs.
Each table (class) contains references to other tables.
public class Table1 {
[AutoIncrement]
public Int32 Id { get; set; }
[Index(Unique = true)]
...
0
votes
1answer
53 views
How can I iterate over a quadruple linked 2-dimensional grid of data as if it were a 2-dimensional array?
How can I iterate over a quadruple linked 2-dimensional grid of data as if it were a 2-dimensional array?
My grid structure is:
typedef bool tile;
struct BLOCK;
typedef struct BLOCK block;
struct ...
0
votes
1answer
210 views
C++ datastructure (standard library) dump (like the python print function)
When I'm programming in python it's very convenient to just print whatever datastructure you want to inspect on the screen. Does there exist something like this in C++ for STL datastructures?
It ...
0
votes
1answer
488 views
Balancing a BST with weights
I'm building a recursive Java method to balance a binary search tree (using ints, but designed generic) using weights in each node. For my purpose, the weight of a node is defined as the number of ...
-1
votes
1answer
248 views
time-series statistics algrothim to generate recursive datastructure in C#
I have a list of values, could be doubles or DateTimes.
15, 36, -7, 12, 8
This data is a TimeSeries, so order matters. Also there are only 3 to 6 values in the list, so we are not talking about a ...
1
vote
2answers
473 views
Using a C++11 initializer_list with a recursively defined type using constexpr
Is it possible to use the C++11 initializer_list to assemble a recursively defined class such as Foo, below, using constexpr constructors:
template <size_t N>
struct Foo {
constexpr Foo(int ...
1
vote
4answers
69 views
adding each member of an array again, right after itself
if I have this Python array:
mac_tags = [ "global_rtgn", "global_mogn" ]
And I want this Python array:
mac_tags = [ "global_rtgn", "global_rtgn", "global_mogn","global_mogn" ]
How might I create ...
1
vote
3answers
220 views
Objective C class data structure, instances of a class reference once another as ivars
I'm writing a class in Objective C that has an ivar with instances of the same class...
@interface State : NSObject {
NSString *name
NSSet *neighboringStates // this is a set of State objects
}
...
4
votes
2answers
402 views
How can I recursively insert the Fibonacci sequence into a binary tree
Hope someone can help, I'm not a programmer, but have been interested in exploring Fibonacci sequence and it's recursive tree...
I've created a Binary Tree class, along with an associated TreeNode ...
0
votes
1answer
565 views
Binary Search Tree - storing reference to parent node
I hope someone can help me, I'm not a programming professional, but am using Python to learn and experiment with binary trees.
Below is the code I have, and have attempted to try and store a ...


