...AA BB sysodufsoufdds BB AA ... Where AA,BB can be arbitary consecutive string with no space in it. But I want to get the outest pair:AA
Not sure I\'m asking the right question, but it\'s a start. I have a user control with a ListView and, ideally, I would like to nest this same control inside of the ListView to provide recursion. This
I am trying to write a recursive code that can convert a number to any base system. for example, the integer 10 into binary would convert to 1010
So I am trying to write a code that opens a file and inside that file might be empty or contains the name of other files to open on each line. For example. 1.txt has 2.txt. on the first line and 3.txt
This question already has answers here: Why does my recursive function return None? (4 answers) Closed 4 months ago.
There is a bag that can take X kilogram. You will get an array of stuff and their weight. Print true and the each weight of the stuff
I\'ve written a function to get the maximum value from a list of nested lists, I have the general form of the function down right; it works on flat lists and nested lists but seems to fail when there
I wrote a recursive function to find the number of instances of a substring in the parent string. The way I am keeping count is by declaring/initialising count as a global variable outside the functi
I want to print the reverse of a linked list. I am 开发者_开发技巧doing it by recursion. But while calling read(temp) in function read, it gives a BUS ERROR.
I\'ve seen in a few places lately people saying that PHP has a p开发者_开发问答oor capacity for recursion.Recently I wrote a recursive php function for graph traversal and found it to be very slow com