Ask Me Help Desk

Ask Me Help Desk (https://www.askmehelpdesk.com/forum.php)
-   Java (https://www.askmehelpdesk.com/forumdisplay.php?f=440)
-   -   Determine the value of CN and time comlexity for recurrence functions (https://www.askmehelpdesk.com/showthread.php?t=817742)

  • Oct 31, 2015, 08:23 AM
    Mira123
    Determine the value of CN and time comlexity for recurrence functions
    public static int myFunction( int N){
    if (N == 1) return 1;
    return ( (myFunction (N/2) + myFunction (N/2));
    }

  • All times are GMT -7. The time now is 11:55 AM.