-2
votes
1answer
60 views

Time complexity of a recursive function

I have a Java function that receives a matrix (2-dimensional array[][]) and creates a dynamic array of options of changes for this array, and then recursively creates a dynamic array for each option ...
3
votes
1answer
116 views

Algorithm for generating all numbers that sum to a given number and its complexity

I found the following problem when preparing for an interview: 3 can be written as 1+1+1, 1+2, 2+1; 4 can be written as 1+1+1+1, 1+1+2, 2+2, 1+2+1, 2+1+1, 3+1, 1+3; Given an integer, how many ...
6
votes
2answers
536 views

Big-O running time of various search algorithms [closed]

The method hasTwoTrueValues return true if at least two values in an array of boolean are true. Provide the Big-O running time for all three implementations proposed. // Version 1 public boolean ...
2
votes
0answers
106 views

How many times these statements been executed? [closed]

This is a HW question, and it took me hours to solve it. I really need your help. Three questions left and they are all based on this question. So, a mistake would cost me marks on the next 3 ...
1
vote
1answer
182 views

dynamic programming - what's the asymptotic runtime?

I'm teaching myself dynamic programming. It's almost magical. But seriously. Anyway, the problem I worked out was : Given a stairs of N steps and a child who can either take 1, 2, or 3 steps at a ...
26
votes
13answers
3k views

Example of O(n!)?

What is an example (in code) of a O(n!) function? It should take appropriate number of operations to run in reference to n; that is, I'm asking about time complexity.