4
votes
4answers
171 views
Calculating the depth of a binary tree in LISP recursively
I have the following binary tree
A
/ \
B C
/ \
D E
represented as a list in Lisp (A 2 B 0 C 2 D 0 E 0) where the letters are node names and the numbers are the numb …
0
votes
6answers
40 views
Recursive php function that turns nested array into nested html blocks
Hi guys,
I'm looking to write a recursive php function that would call a function to generate nested HTML blocks ( not necessarily only DIVs ). So for example, for the following a …
0
votes
5answers
151 views
C++ Pascal’s triangle
Hello, I'm looking for an explanation for how the recursive version of pascal's triangle works
The following is the recursive return line for pascal's triangle.
int get_pascal(c …
0
votes
1answer
17 views
Does pthreads support a method for querying the “lock count” of a recursive mutex?
Does pthreads support any method that allows you to query the number of times a recursive mutex has been locked?
0
votes
5answers
81 views
Finding a class within list
I have a class (Node) which has a property of SubNodes which is a List of the Node class
I have a list of Nodes (of which each Node may or may not have a list of SubNodes within i …
0
votes
1answer
43 views
iPhone Core Data Recursive Relationships
I'm having some trouble with a recursive relationship in core data. I've got a managed object called a "SearchCategory", and that category can have "Categories" and it can also ha …
0
votes
0answers
33 views
Excel VBA - Recursively list files and output to csv
Hi guys,
I've got a problem with my VBA (you guessed it).
I took code from this post:
vbaexpress.com/kb/getarticle.php?kb_id=405
and added in:
wilmott.com/messageview.cfm?catid= …
0
votes
0answers
14 views
TSQL Cascade delete for child records?
I have a parent/child table (simple tree) table structure (ID, ParentID), where I want to delete (and get the ID of) all children for a given parent ID - similar to this post http: …
1
vote
2answers
53 views
Bash - Recursively Create Nonexistant Subdirectories
Hello all,
I am creating a quick backup script that will dump some databases into a nice/neat directory structure and I realized that I need to test to make sure that the director …
0
votes
5answers
35 views
Datatable in ASPX Used As DataSource For Multiple User Controls
In an ASPX page, I have 7 user controls loaded. In each user control there are data bound controls (gridview for example).
Currently each user control runs a query to return data …
0
votes
2answers
76 views
c# recursive generics data structure searching
Hi folks,
been struggling with this for a couple of days now and still stumped.
i have a data structure that starts with containers that can hold other containers, and eventually …
0
votes
1answer
51 views
django recursive relationships
My DjangoApp is using categories to generate a navigation and to put stuff in those categories.
There are two types of categories:
ParentCategories (top categories)
ChildCategor …
-5
votes
6answers
116 views
Create a recursive function to print integer numbers vertically.
Create a recursive function to print a multidigit number vertically. For example, 2378 should be
printed
2
3
7
8
Test your program with numbers of different length.
0
votes
1answer
131 views
Recursive Query using HQL
Hi every one, I have this Table
CREATE TABLE IF NOT EXISTS `branch` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`studcount` int(11) DEFAULT NULL,
`username` varchar(64) NOT NU …
0
votes
5answers
235 views
How can I replace multiple foreach loops with a ‘for’ loop or a recursive function?
Hello:
I am stuck with a bunch of foreach loops and would like to know if there is a way to hone them down to a simple 'for' loop or a recursive function? I'm trying to generate H …
