Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ Problem In Data Structures the use of recursion is used in many algorithms because it is a technique that can in many cases make

C++ Problem

In Data Structures the use of recursion is used in many algorithms because it is a technique that can in many cases make for an elegant solution. Recursion should be used sparingly because of its high overhead but there are times when you simply cannot do things without it. In the assignment you are going to work to gain a good understanding of how to apply recursive techniques to solve programming problems.

For this assignment write the following recursive functions:

A.) Write a recursive function called firstOccurence that will return the position of the first occurence of a character within a string

B.) Write a recursive function called sumAscii that will return the sum all of the chars within a string.

For B the sum of the chars is their ASCII equivalent value. For instance the character 'A' has a value of 65. So, the sum of CAT would be 216 because C = 67, A = 65, and T = 84

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Advances In Databases And Information Systems Uropean Conference Adbis 2020 Lyon France August 25 27 2020 Proceedings Lncs 12245

Authors: Jerome Darmont ,Boris Novikov ,Robert Wrembel

1st Edition

3030548317, 978-3030548315

More Books

Students also viewed these Databases questions