Top "Recursive-datastructures" questions

A recursive datastructure is a datastructure (e.g. a struct or class) that contains one or several references to instances of the same datastructure as a member.

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 …

python data-structures heap recursive-datastructures
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# .net vb.net treeview recursive-datastructures
Mastering Recursive Programming

I am having trouble in thinking/solving the problem in terms of recursion. I really appreciate the concept and I …

algorithm recursion data-structures recursive-datastructures
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 …

php json recursive-datastructures
Multi-dimensional Dictionary class in VBA

This post is half to share a solution and half to ask if there's a better way to do it. …

vba excel data-structures hierarchical-data recursive-datastructures
Recursive struct

Do I need to use typedef in order to build recursive structs? I tried to use the following code without …

c struct recursive-datastructures