Recursion in computer science is a method of problem solving where the solution to a problem depends on solutions to smaller instances of the same problem.
0
votes
0answers
11 views
Recursion for assigning jobs
This is a specific question, so I'll quickly explain the background first. I'm working on software that assigns employees to a specific "job" for the day. In order for them to work the job, they must ...
0
votes
0answers
12 views
bash - recursive script cant see files in sub directory
I got a recursive script which iterates a list of names, some of which are files and some are directories.
If it's a (non-empty) directory, I should call the script again with all of the files in ...
1
vote
0answers
18 views
Display multidimensional array as bullet points
I need help designing a recursive function that does:
Displays a multidimensional array recursively
Must use bullet points e.g. <ul> and <li>
Text must link to a document. For example ...
2
votes
3answers
64 views
Number of recursive calls
How to change the algorithm to further show the amount of recursive calls?
public class fibb {
static long fibonacci(long n){
if (n == 0)
return 0;
else if (n == 1)
...
-2
votes
1answer
26 views
OCaml: Adapting recursive function
i've lost all my day in this problem. So, i have a recursive function like that:
let rec rewriteTree tree =
rewriteElement tree c;
List.iter rewriteTree tree.subtree in
rewriteTree ...
4
votes
5answers
72 views
anagram algorithm is returning duplicate values
I've been developing an algorithm to calculate anagrams for a given (set of) word(s). I just got it to work, with ONE incredibly frustrating exception (no pun intended; there is no actual exception ...
2
votes
2answers
26 views
ConcurrentModificationException with recursive use of Maps in Java
We are creating a tree structure made up of AID's from JADE Agent structures. We chose to do it recursively so that the code can be executed no matter how many Agents are currently in the system, the ...
0
votes
1answer
17 views
trying to find all the path in a graph using DFS recursive in Python
I have found a solution that was posted some times ago and I have tried to apply it to my exercise but it doesn't work.
I have a class graph that has nodes and edges and a method childrenOf that gives ...
2
votes
4answers
81 views
Count paths in a matrix
This is a question from homework, that I got stuck with, and I'll be happy if someone could direct me.
A legal path is defined, by statring at the first cell (row 0 collumn 0), and countinue to the ...
0
votes
1answer
24 views
Grails domain self-reference recursive call
Here is my domain class:
class Category {
String name
static hasMany = [subCategories: Category]
static belongsTo = [parentCategory: Category]
static mapping = {
...
0
votes
0answers
40 views
Python recursive generators performance
In python, could anyone explain how you would go about changing a recursive function into a generator?
There is a second problem however, the performance seems to be degrading.
For example, here is ...
0
votes
1answer
21 views
Recursion to split a word according to certain linewidth (gd image)
I am making an application that lets users write on an image using GD image. The imagebox is of a certain width. I'm facing a problem when users write words that are longer than the width of my ...
3
votes
4answers
73 views
Why isn't my remove node function working?
I've checked the boards and could not find any help with this. I find it easy to implement recursive functions given base and general cases, but this doesn't work the way I do it. I'm supposed to ...
0
votes
1answer
27 views
Prolog recursion with different types
If I have predicates in the following format:
edge(a,b,50).
edge(b,c,70).
speed(am,70).
speed(pm,100).
How can I write a prolog program where I can say total(From,To,Time,Duration), where time is ...
1
vote
0answers
21 views
Converting BST to DLL in Java
I'm trying to convert a binary search tree to a doubly, circular linkedlist without the use of any helper methods. This code is only returning the larger half of the values and the smaller values are ...
-5
votes
2answers
70 views
Shifting arrays without using loops
I have been asked to equate two strings using recursion. Absolutely no loops are allowed. My idea is to check element by element, shrinking the string over time, but I don't know how to implement it. ...
-3
votes
4answers
77 views
What is wrong with my code [closed]
Write a recursive, boolean -valued method , containsVowel, that accepts a string and returns true if the string contains a vowel.
A string contains a vowel if:
The first character of the ...
-3
votes
3answers
89 views
Change function to only use 1 recursion [closed]
I have this function
public static int add(int n)
{
int h = 0;
for (int i = 1; i < n; i++)
{
h = h + i * add(i);
}
if (n < 3)
{
h = n;
}
return ...
0
votes
0answers
31 views
Feedback / Critique on Tree Structure
So I've been writing this data structure for a few days, and now I'm really curious about what it actually is, and to get some critique on my logic.
A branch, based on this usage, exists when a HEAD ...
-2
votes
1answer
71 views
All combinations of a list where each element can have few values [closed]
Well problem i need help with is simple:
You have list of length x.
Then you have array of numbers of length y.
I need to generate all possible lists of length x, that elements are from array.
I ...
0
votes
1answer
31 views
PHP Sorting Files RecursiveDirectoryIterator
I'm listing the files in my subdirectory just fine using the following code
// Create recursive dir iterator and skip the dot folders
$dir = new RecursiveDirectoryIterator('.',
...
0
votes
3answers
122 views
How to stop recursion?
The code below is to find the path in a tree that adds up to a given sum... what I do here is enqueue all nodes' values into a array path and print it if the conditions satisfies recursively....
void ...
-2
votes
3answers
80 views
New idioma and How to detect recursion level [closed]
This is not exactly a question.
I think I invent new idioma - elegant way to say:
Do something , if fail, try to fix it and do it again.
If failed three times, give up. Is it looks good?
use strict;
...
0
votes
0answers
34 views
child/parent pairs sum per level
sorry to ask, answer is probable recursive but cant get my head around recursion.
Have a workflow that can have sub-workflows in that workflow, I can calculate the time in each workflow, but am ...
-3
votes
1answer
47 views
How do I get all the instance variable names and values recursively using reflection in java
Basically I need to print all the instance variable names and their values in a name value pair format recursively. Say my class structure is as below
public class SomeClass{
private String ...
3
votes
1answer
65 views
PHP/MYSQL: Slowly iterate through 6k rows and for every row create new records - Algorithm
I'm sorry for stupid question, but I have one of these days, where I feel like the dumbest programmer. I need your help. I'm currently developing with PHP and MYSQL, where I'm like super low skilled ...
1
vote
4answers
69 views
Keep track of how many times a recursive function has been called in C++
I am trying to work on a program that has a function whose parameter is an vector of string. I want to use recursive on that function but everytime the function is called, I want to change the ...
0
votes
0answers
38 views
Java Serialization to a JSON string using reflection
Ok, so I am just getting into advanced topics like reflection in Java for an OOPrograming class at my university and am finding myself in deep water (for me anyway). We were given an assignment that ...
1
vote
0answers
16 views
Git submodule with same name
I am trying to make repo like:
server
\ module_1
\ library
\ module_2
\ library
Whereis modules its stand-alone programs, using the same library. They should work/compile without server ...
0
votes
3answers
63 views
Binary search tree method needed: find minimum value node
Anyone could help me do this: I need a public method for my binary search tree ADT that returns a reference to the information in the node with the smallest value in the tree. The signature of the ...
-2
votes
1answer
34 views
How does recursive backtracking work?
I'm preparing for my Java Final test when I came across this problem in a previous exam.
the problem is written in another language so I'll try my best to explain it.
you have a method
public int ...
0
votes
2answers
36 views
Call the parent function recursively in a non-blocking callback function
Is it possible to call a parent function recursively in a non-blocking callback function?
For example:
function checkValidZip(zipInput) {
if (!zipInput.trim().match(/^(\d{5})$/g)) {
...
2
votes
1answer
59 views
The relationship between linear recursion, binary recursion and runtime
Say we have a method that takes n steps, but that calls itself linearly at the worst case n times. In such a case would the Big O would be n*n? So is a recursive call generally n^2 similarly to two ...
0
votes
1answer
50 views
Get the the max depth of a tree in Lua
I've seen this in other languages but my Lua implementation is tripping me up. I have a tree structure and I'm trying to write a recursive function to find the max depth of a tree. A node is a table ...
2
votes
1answer
16 views
Strange warning declaring a simple PyParsing recursive grammar in Python
I am trying to parse a CLIPS-like grammar in Python using PyParsing.
The piece of code I am having problem with is:
import pyparsing as pp
...some pyparsing tokens definitions...
...
0
votes
1answer
14 views
jQuery - Uncaught RangeError: Maximum call stack size exceeded
The following code (see Fiddle here) throws the stack overflow referred to in the question title. I'm trying to get a box shadow to display around a circular image in a pulse effect. Can anyone point ...
-11
votes
0answers
89 views
unable to write recursive algorithm c# [closed]
I have Lists as follows that contain MenuIds and Parent/Master ID.How do i write a recursive algorithm to access all child menus given parent Id??
MenuID ManuName MasterID
...
0
votes
1answer
17 views
Translate a rectangle in canvas
I am unable to clear a rectangle completely using clearRect method which is being translated on canvas across X direction. The problem can be seen live at JS Bin - Link to demo
JS code
(function() { ...
1
vote
2answers
61 views
Recursive open files in Perl
I have a Perl script to count how many times an expression appered in a file, in this particular case it counts everything found between '<' and '>' because i wanted it to parse .xml files.
...
-8
votes
0answers
47 views
Function In C that Input a File and return each string at a time [closed]
Problem: C function that input a file and return a String at a time.
For Example:if in a file say input.txt
hello world please help me
Then the 1st function call should return ...
0
votes
2answers
24 views
jQuery: Recursive call of local function does not work
I've tried using Google to solve my problem but I didn't find the solution. I've written a small jQuery-script that slides two div-containers up and down independantly. To repeat this sliding ...
2
votes
1answer
41 views
Recursive builder nesting issues
I am trying to parse a JSON / JavaScript Object into HTML... Most of it's working, but I can't figure out my recursive build method (App.Layout.Form.DocumentDirector)...
It keeps on nesting ...
1
vote
1answer
46 views
Recursively editing a list in R
In my program, I am recursively going over a nested list and adding elements to an overall list that I will return. There are a few details to be taken care of, so I can't just use unlist.
...
1
vote
0answers
38 views
grouping PHP objects by parents recursively
I have an array of "tickets" objects :
array (size=31)
0 =>
object(TicketPlus)
public 'values' =>
array (size=46)
'id' => int 62483,
'milestone_id' ...
0
votes
1answer
34 views
JSF: how prevent stackoverflow due to recursion during build phase (despite rendered test)
Apologies for not abstracting this problem in a dedicated test case, I hope the example from a real project is simple enough to describe the problem.
I have a JavaEE/JPA2/JSF web application where ...
1
vote
3answers
103 views
Confused in understanding recursion
I am little bit confused with the following code to find height of the tree and the code to find sum of n nos recursively, which is below this. What does the lheight and rheight store, depending on ...
0
votes
3answers
74 views
Understanding, Recursion in Ruby
In recursion, a method calls itself. I'm not following it when there are return values. For example, in the "Learn to Program" book by Chris Pine, there is this example on factorials.
def factorial ...
0
votes
4answers
84 views
Recursive function that takes the sum of odd integers
The program runs but it also spews out some other stuff and I am not too sure why. The very first output is correct but from there I am not sure what happens. Here is my code:
#include ...
0
votes
0answers
55 views
Recursion, mixed arrays, Ruby
I have a recursive problem that is not returning as I expect and I'm not sure how to change the function.
I would like an array containing both strings and arrays that derive from a chunk of text ...
0
votes
2answers
59 views
Issue when using iterative loops inside recursive methods [closed]
Hey I was making a method that uses recursion inside for loops, and for some reason the for loops never iterated... Here is an example of what i was doing but with simpler code. The code never ...



