The recursion tag has no wiki, would you like to help us create it?
about the recursion tag | faq | stats | hot answers | new answers | synonyms
1
vote
3answers
50 views
Count Number of 1's in A Binary Representation of N, RECURSIVELY. in JAVA
I understand the concept that the number of 1's in N is the same as N/2 if it's even, and N/2 + 1 if the number is odd, but I don't understand how to do it recursively.
Also, say I input 10101 into …
2
votes
6answers
151 views
What does this recursive function do?
I got this question in an interview. So, this seems to me a messed up Fibonacci seq. sum generator and this gives a stackoverflow. Because if(n==0) should be if(n<3) (exit condition is wrong). What …
0
votes
3answers
21 views
Recursive listing of all files matching a certain filetype in Groovy
I am trying to recursively list all files that match a particular file type in Groovy. The example at link text
almost does it. However, it does not list the files in the root folder. Is there a way …
0
votes
0answers
29 views
How do I record loop iteration count and recursion depth in a reference variable that is an argument of the recursive function?
Say I have a recursive function that contains a loop. I want to count how many times the loop runs as well as at what depth in the recursion the count exists in. The trick is I want to store this in a …
0
votes
5answers
96 views
How Do You Predict A Non-Linear Script's Run Time?
I wrote this simple code in python to calculate a given number of primes.
The question I want to ask is whether or not it's possible for me to write a script that calculates how long it will take, in …
6
votes
5answers
125 views
0
votes
2answers
97 views
Recursive MySQL query
My database schema looks like this:
Table t1:
id
valA
valB
Table t2:
id
valA
valB
What I want to do, is, for a given set of rows in one of these tables, find rows in both …
1
vote
2answers
67 views
Recursive Programming for Text Predictive text
I want to make a program that takes a set of numbers like 234, and at the moment, print out every combination of letters possible that are on a mobile phone keypad.
(1 - nothing, 2 - abc, 3- def and …
0
votes
1answer
79 views
F# recursion inside type definition
Hey all,
I am having some problems with trying to implement Automatic Differentiation in F#. I think the problem is down to the evaluation not being 'lazy'.
Here is my code:
type Diff =
{d : …
1
vote
1answer
33 views
Converting flat data from sql to List<Item>
First of all I'm sorry if you feel this question has been raised before, but I can't seem to wrap my mind around this one, although it's rly not the hardest thing to do..
Basically I have a query …
2
votes
2answers
46 views
How can I recursively delete folder with a specific name with PowerShell?
I can delete files with specific extensions in multiple folders with this:
Get-childitem * -include *.scc -recurse | remove-item
But I also need to delete folders with a specific name - in …
2
votes
1answer
77 views
F# Recursion termination
I have been reading alot about functional programming and f#. I have a snippet of code that I cannot understand. I am familiar with recursive programs but this particular code is bugging me
open …
4
votes
5answers
127 views
Is it possible to write a recursive IEnumerable<T>
I have a class like:
class Spline
int ChildrenCount;
Spline GetChild (int index)
class SplineCollection : IEnumerable<Spline>
Spline Master
Is it possible to write a recursive …
2
votes
2answers
48 views
Python: Strange behaviour of recursive function with keyword arguments
Hi folks,
I've written a small snippet that computes the path length of a given node (e.g. its distance to the root node):
def node_depth(node, depth=0, colored_nodes=set()):
"""
Return the …
3
votes
3answers
119 views
F#: Mutually recursive functions [closed]
Possible Duplicate:
[F#] How to have two methods calling each other?
Hello all,
I Have a scenario where I have two functions that would benefit from being mutually recursive but I'm not …