3
votes
2answers
112 views
Can a Func<> call itself recursively?
I was playing around with a code golf question yesterday for building a christmas tree which came around last year and I threw together a quick recursive algorithm to do the job:
…
0
votes
4answers
64 views
Most important speed issues
I am participating in Al Zimmermann's Programming Contest.
http://www.azspcs.net/Contest/SonOfDarts
I have written a recursive algorithm but it takes a long time to run. I was …
0
votes
2answers
57 views
recursion function in php not working as expected
private function find_children ($parent_id, $children, &$result)
{
foreach ($children as $c)
{
if ($c->parent_comment_id == $parent …
1
vote
3answers
38 views
Template Recursion error
Hi! I am in the process of refreshing my XST knowledge, and have decided to have a go at making an XSLT 1.0 stylesheet that convert the XMLHelp files from the C# compiler into a b …
5
votes
5answers
102 views
Simplest way to do a recursive self-join in SQL Server?
What is the simplest way of doing a recursive self-join in SQL Server? I have a table like this:
PersonID | Initials | ParentID
1 CJ NULL
2 EB 1
…
1
vote
3answers
66 views
Recursive same-table query in SQL Server 2008
I have the following table in a SQL Server 2008 database:
Id Name ParentFolder
-- ---- ------------
1 Europe NULL
2 Asia NULL
3 Germany 1
4 UK …
2
votes
2answers
66 views
Use recursion instead of EVAL
Hello everybody,
I have a list of items in a page that must be hidden in sequence, but just after the previous item has been totally hidden.
I made the following code, where I cr …
0
votes
1answer
35 views
xsl loop to split a fragment tree every n times
This is a sample of my XML, it can possibly have thousands of rows of items in a range of categories.
<store>
<products type="computer">
<item desc="text" am …
0
votes
3answers
39 views
xsl recursive loop node by index
I have created a recursive template for getting the first n number of items from my XML.
It uses an index(counter) just like how I would in a for loop. Now how can I get a node fr …
0
votes
0answers
45 views
wait for ajax response inside a loop
I need to wait for an ajax response inside a for loop. If I could I'd simply make a synchronous call instead of asynchronous, but I don't have that level of control: I'm using som …
1
vote
7answers
124 views
Find the minimum number in an array with recursion?
int i = 0;
int min = x[i];
while ( i < n ){
if ( x[i] < min ){
min = x[i];
}
i++;
}
return min;
I've written the iterative form to find the min number of an array. But …
0
votes
3answers
76 views
Finding the length of a word at the beginning of a string with recursion
I've written the code below to calculate the length of a word at the beginning of a string with recursion. I've thought of a case in which my code would not work " #@*hello " what …
-1
votes
2answers
83 views
Using Recursion To Compare Strings To Determine Which Comes First Alphabetically Java
I am trying to write a method that uses recursion to compare the strings str1 and str2 and determine which of them comes first alphabetically (i.e., according to the ordering used …
0
votes
3answers
115 views
Recursive function to generate all combinations of capitals in a word
Hey there,
Does anyone know the logic behind creating a recursive function to generate all combinations of capitals in a given word? I'm trying to do this in Java... For exmaple, …
0
votes
5answers
161 views
Calculating a product recursively only using addition
I don't know why the following haskell source code for calculating products recursively only using addition doesn't work.
mult a b = a + mult a (b-1)
I'm always getting a stack …
