Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
455 views

How to create a recursive data structure value in (functional) F#?

How can a value of type: type Tree = | Node of int * Tree list have a value that references itself generated in a functional way? The resulting value should be equal to x in the following ...
8
votes
7answers
656 views

Confusing […] List in Python: What is it?

So I was writing up a simple binary tree in Python and came across [...] I don't believe this to be related to the Ellipsis object, more it seems to have something to do with an infinity loop (due to ...
7
votes
5answers
4k views

populate treeview from a list of path

I'm trying to populate a treeview from a list of folder path, for example: C:\WINDOWS\addins C:\WINDOWS\AppPatch C:\WINDOWS\AppPatch\MUI C:\WINDOWS\AppPatch\MUI\040C ...
6
votes
2answers
766 views

What do I use for a max-heap implementation in Python?

Python includes the heapq module for min-heaps, but I need a max heap. What should I use for a max-heap implementation in Python?
5
votes
2answers
1k views

Recursive variable definitions in Python and F# (probably OCaml, too)

Given these F# type declarations... type Message = | MessageA | MessageB | MessageC | MessageD type State = { Name:string NextStateMap: Map<Message,State> } ...is ...
5
votes
2answers
745 views

PHP RecursiveIterator traversing

I have a structure representing a form and I want to iterate it using RecursiveIterator. The problem is this only returns the top-level questions. What am I doing wrong? Whole form: class Form ...
4
votes
1answer
132 views

How to store recursive datatype with Data.Binary

Data.Binary is great. There is just one question I have. Let's imagine I've got a datatype like this: import Data.Binary data Ref = Ref { refName :: String, refRefs :: [(String, Ref)] } ...
4
votes
3answers
1k views

Java Generics Type Safety warning with recursive Hashmap

I'm using a recursive tree of hashmaps, specifically Hashmap map where Object is a reference to another Hashmap and so on. This will be passed around a recursive algorithm: foo(String filename, ...
3
votes
2answers
148 views

Recursive data structures in haskell: prolog-like terms

I have a question about recursive data structures in Haskell (language that I'm currently trying to learn). I would like to encode in Haskell Prolog-like terms, but every solution I came up with has ...
3
votes
2answers
140 views

DirectoryIterator scan to exclude '.' and '..' directories still including them?

In the script below, I'm trying to copy the folders that exist in the $base directory over to the $target directory. However, in my initial echo test, its returning the . and .. directories even ...
3
votes
4answers
546 views

Generating all possible trees of depth N?

I have several different types of tree nodes, each of which may have anywhere from 0 to 5 children. I'm trying to figure out an algorithm to generate all possible trees of depth <= N. Any help ...
2
votes
4answers
76 views

Java generics problem

So first time generics, my assignment is to make a dungeon(gameworld) made out of squares, these squares(actually cubes) have a lot of types but this is not reall important. So i have a class of ...
2
votes
2answers
933 views

Parse Directory Structure (Strings) to JSON using PHP

I have an array of file-path strings like this videos/funny/jelloman.wmv videos/funny/bellydance.flv videos/abc.mp4 videos/june.mp4 videos/cleaver.mp4 audio/uptown.mp3 audio/juicy.mp3 fun.wmv ...
2
votes
1answer
49 views

Checking whether some object has been already tested

I have a script that is intended to check whether some value (e.g. option or function argument) matches some model. I want my script to be able to check recursive data structures. So the question is: ...
2
votes
2answers
324 views

What is an infinite scaleless quadtree called?

2D spatial indexing question: What do you call a data structure that is essentially an infinite* quadtree whose nodes contain neither absolute coordinates nor absolute scales -- in which the ...
2
votes
5answers
355 views

Find shortest path between two webpages

I need to find the shortest distance between two Wikipedia pages (in "hops") I have a method to extract all the internal wiki links on a page I know the start destination and the end destination but ...
2
votes
3answers
227 views

How CSS and DOM is implemented in the browser?

This is a pretty academic question. I'm wondering how the browser is implemented as in what data structure or algorithm is used to map a CSS selector to a particular DOM element. Is it accomplished ...
2
votes
2answers
787 views

How do I marshall a recursive struct to c sharp?

I have an unmanaged struct I'd like to marshal to c sharp that looks basically like this: struct MyStruct{ /* ... some stuff ... */ int numChilds; MyStruct *childs; } I believe that ...
1
vote
2answers
35 views

get also element that don't match fnmatch

I'm using a recursive glob to find and copy files from a drive to another def recursive_glob(treeroot, pattern): results = [] for base, dirs, files in os.walk(treeroot): goodfiles = ...
1
vote
3answers
91 views

Recursive struct and malloc()

I have a recursive struct which is: typedef struct dict dict; struct dict { dict *children[M]; list *words[M]; }; Initialized this way: dict *d = malloc(sizeof(dict)); bzero(d, ...
1
vote
1answer
210 views

How to create a recursive structure in ASP.NET MVC

I have a categories table which has three fields: Id, Title, and ParentId. I'd like to create a recursive hierarchical structure of my table (a tree) in a cshtml file. I'm new to ASP.NET MVC and I ...
1
vote
2answers
145 views

mkdir and recursive copy in php

My function is having problems creating and copying the contents to the new directory (also I'm not sure if this is the best way to do this, so alternate suggestions are welcome). I have 2 network ...
1
vote
1answer
210 views

Rails 3 - Recursive Relationship - Comments

I'm trying to create a recursive relationship in rails so that comments can have replies (using the same model comment.rb). So basically, a comment has many comments(as replies) and a comment can ...
1
vote
4answers
398 views

Get path from every leaf node to root in a tree structure

How can I turn this tree structure [1, [2, [3, 4]], [5, [6, [7], 8]]] 1 2 3 4 5 6 7 8 .... into this "reversed tree" structure, which basically contains the ...
1
vote
1answer
221 views

Searching in KD-tree slow

I'm implementing a KD-tree to cluster points a map into groups. I've been using Wikipedia's KD-tree article as a reference. The search returns the correct nearest neighbor point, but it is slower than ...
1
vote
2answers
178 views

Efficient persistable recursive data structure

The usual approach with recursive data structures is to have a parent pointer in each object. My problem is that the usual implementation can't answer the questions below in a single operation; ...
1
vote
1answer
94 views

SearchOption.AllDirectories and ignore access errors?

string[] files = Directory.GetFiles(tb_dir.Text, tb_filter.Text, SearchOption.AllDirectories); I'm trying to search through a directory and all sub directory to find some file. I keep ...
0
votes
1answer
32 views

Django - Optional recursive relationship

I am trying to use Django to create a recursive relationship, which gives users a folder-like hierarchical structure in which to place resources. What would be the best way to achieve this? I know ...
0
votes
2answers
145 views

Why doesn't this work recursively?

Below is a program in Scala. def range(low : Int, high : Int) : List[Int] = { var result : List[Int] = Nil result = rangerec(root, result, low, high) result } private def rangerec(r : ...
0
votes
1answer
362 views

sending object (recursive data structures) by XML-RPC in python

I need to send an object through XML-RPC in python. My object consist of composite data type to populate a tree structure: class Node(object): '''Composite data type ''' def __init__(self, pData, ...
0
votes
1answer
67 views

How do I list only selected level in directory recursive list?

I use this code: PHP Sort Files In Directory by Type But it opens up all directories. I just want directories that leads to the selected item to be open.
0
votes
1answer
257 views

How to reference the current directory name, filename and file contents with RecursiveDirectoryIterator loop?

In the script below, I'm attempting to iterate over the folders and files inside of the $base folder. I expect it to contain a single level of child folders, each containing a number of .txt files ...
0
votes
1answer
203 views

F# P/Invoke Marshaling Recursive Structures

None of the examples I have seen thus far appear to address the problem of marshaling a structure containing a union of structures that contain recursive references. I am attempting to write a ...
0
votes
2answers
105 views

Data referencing to both tables in m:n relation

I am working on a mysql based system to manage data from processing of food products. At this point I came across the following specific Problem: I have a table A with some items: Farmer ...
0
votes
2answers
196 views

Display `pretty output` of directory content from array

I'm using the following code to get an array of directories and their sub-directories where each contain file type extension: png. It works great but I need to be able to output the results of the ...