Index

C M P T 
All Classes and Interfaces|All Packages

C

combinations(String, int, String) - Method in class MoreRecursionHelper
For this method, we are given a String to rearrange into all possible subsets of the characters recursively.

M

main(String[]) - Static method in class MoreRecursionMain
Main function for our program.
methodToCall(int, Scanner) - Static method in class MoreRecursionMain
This method uses a switch case with the users choice of 1, 2, 3, or 0 depending on the choice one of the cases calls the corresponding method from the MoreRecursionHelper object.
MoreRecursionHelper - Class in Unnamed Package
This class is where you will be implementing more of your recursive methods.
MoreRecursionHelper() - Constructor for class MoreRecursionHelper
 
MoreRecursionMain - Class in Unnamed Package
Main class for program initialization.
MoreRecursionMain() - Constructor for class MoreRecursionMain
 

P

printChoices() - Static method in class MoreRecursionMain
This method prints out the choices available when calling methods.
pyramidTotal(int) - Method in class MoreRecursionHelper
This method takes a parameter of however many rows of "blocks" our imaginary pyramid is made up of.

T

toBinary(int) - Method in class MoreRecursionHelper
This method will convert any normal decimal number to its binary representation, so a number like 17 should return 10001.
C M P T 
All Classes and Interfaces|All Packages