Find Jobs
Hire Freelancers

C++ Recursion program

$10-20 USD

Slutfört
Publicerad över sju år sedan

$10-20 USD

Betalning vid leverans
Write individual C++ programs for each function. Implement all of these functions recursively. No loops allowed. No static Variables allowed. bool isPrefix( char target[] , char bigString[] ); // return true iff target is a prefix of bigString. No library functions allowed. // e.g. "abc" is a prefix of "abc" and "abcde" but not of "ab" or "aabc" or "acb" // Notes: isPrefix(w,w) and isPrefix("", w) are always true but isPrefix(y,"") is false unless y is "". // bigString and target are C-strings meaning null-terminated character arrays. bool equal(char s[], char t[]) ; // return true if C-strings s and t are equal int addOdd(int n); // return the sum of all odd numbers from 1 to n double twoToThe(int n); // return 2 to the power n including when n <= 0. int getMax(int nums[], int size); // return the maximum value in nums. int getIndexOfMax(int nums[], int size); // return the index of a maximum element of nums int findLastOccurence(int nums[], int size, int target); // return index of the last occurrence of target or -1 if target is not found. int findFirstOccurence(int nums[], int size, int target); // return index of the first occurrence of target or -1 if target is not found. void printDigits(unsigned int n); // print the digits of n separated by spaces. ie.g. 3415 --> 3 4 1 5. Assume n > 0 void drawLine(int n, char c); // output n occurrences of c on a line e.g. drawLine(4,'X') will output XXXX. void drawRuler(int n); // output a ruler pattern, e.g. drawRuler(4) will output the pattern below. (Call drawLine.) - -- - --- - -- - ---- - -- - --- - -- - string toBase16(unsigned int n); // return a string with the base 16 representation of n. Assume n>0. // 6-10 lines of code should be enough. string reverse(string s); // return a string with the same characters as s in reverse order, e.g. "abc" --> "cba" bool isPalindrome(int nums[], int size); // return true if the values in nums form a palindrome, e.g. {1,2,2,1} or {63,24,63}. bool isSorted(int nums[], int size); // return true if the values in nums are in ascending (or nondescending) order, e.g. {1,1,2,4} but not {1,1,4,2}. unsigned int intLog(unsigned int number, unsigned int base); // return biggest power of base that's <= number. // e.g. intLog(233, 3) is 4 since 3^4 = 81 but 3^5 is 243. // preconditions: base >= 2, number >= 1. int add(int m, int n); // return sum of m and n using ++ and -- operators ( Don't use + or - .) // Be sure to handle the cases where m and/or n is negative. // Hint: m + n = (m+1) + (n-1) = (m-1) + (n+1) int times(int m, int n); // return product of m and n using repeated addition. ( So don't use * .) // e.g. times(3,2) = 3 + times(3,1) = 3 + 3 + times(3,0) = 3 + 3 + 0 = 6 // If n < 0 then use the identity times(m,n) = -times(m,-n) unsigned int skipFactorial(unsigned int n); // n * (n-2) * (n-4) * .... * {1 or 2} and skipFactorial(0) = 1. void echo(); // The user enters a sequence of nonzero integers followed by 0. // The function then outputs the same integers in the original order, not including the 0. // Example: 43 23 88 6 55 0 --> 43 23 88 6 55 // No arrays, strings or other data structures allowed. void echoReverse(); // The user enters a sequence of nonzero integers followed by 0. // The function then outputs the same integers in the reverse order, not including the 0. // Example: 43 23 88 6 55 0 --> 55 6 88 23 43 // No arrays, strings or other data structures allowed.
Project ID: 12749617

Om projektet

4 anbud
Distansprojekt
Senaste aktivitet sju år sedan

Ute efter att tjäna lite pengar?

Fördelar med att lägga anbud hos Freelancer

Ange budget och tidsram
Få betalt för ditt arbete
Beskriv ditt förslag
Det är gratis att registrera sig och att lägga anbud på uppdrag
Tilldelad till:
Använd avatar
This looks nice and easy, I know exactly how to write each and every one of these functions already. Just let me at it and it will be done in no time :)
$15 USD Om 1 dag
5,0 (3 omdömen)
2,9
2,9
4 frilansar lägger i genomsnitt anbud på $28 USD för detta uppdrag
Använd avatar
Hello, I have more that 7 years of experience in Java and .Net. I can do this project. Let me know more about this job. Best regards.
$20 USD Om 1 dag
5,0 (2 omdömen)
0,0
0,0

Om kunden

Flagga för UNITED STATES
San Jose, United States
5,0
2
Verifierad betalningsmetod
Medlem sedan nov. 18, 2016

Kundverifikation

Tack! Vi har skickat en länk för aktivering av gratis kredit.
Något gick fel med ditt e-postmeddelande. Vänligen försök igen.
Registrerade Användare Totalt antal jobb publicerade
Freelancer ® is a registered Trademark of Freelancer Technology Pty Limited (ACN 142 189 759)
Copyright © 2024 Freelancer Technology Pty Limited (ACN 142 189 759)
Laddar förhandsgranskning
Tillstånd beviljat för geolokalisering.
Din inloggningssession har löpt ut och du har blivit utloggad. Logga in igen.