Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+2
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
10
Posts with Downvotes
4
Downvoting Members
4
4 Commented Posts
0 Endorsements
~252 People Reached
Favorite Forums
Favorite Tags
Member Avatar for aimee_jc

[CODE]function projection($x1, $x2, $x3){ //$x1 = first year //$x2 = second year //$x3 = last year if (($x1 != "") ||($x1 != 0) && ($x2 != "") ||($x2 != 0) && ($x3 != "") ||($x3 != 0)){ //MODIFIED EXPONENTIAL $b = ($x3-$x2)/($x2 - $x1); $a = ($x3 - $x2) / …

Member Avatar for jwenting
-3
82
Member Avatar for aimee_jc

Please help me! What is the time complexity of modified exponential projection? The equation is: population = C + AB^time this is used to project the population for the next years Thank you!

Member Avatar for jwenting
-3
51
Member Avatar for aimee_jc

what is the time complexity of a decision tree algorithm? using if then else statement thank u!

Member Avatar for jwenting
-2
64
Member Avatar for aimee_jc

[CODE]$k2 = $subject_k2/40; $j2 = $subject_k2%40; if($j2 >= 15){ $k2 = $k2 + 1; }[/CODE] what is the time complexity of the above code? thank u!

Member Avatar for jwenting
-2
55