Answer to Question #76526 in C++ for LEE JIA WEI
2018-04-24T09:55:03-04:00
Write a function num_dups that takes in a string and returns the number of duplicated characters in the string.
Hint: You can use a std::map to maintain a count of the characters.
#include <string>
using namespace std;
int num_dups(string str) {
//code
}
1
2018-04-26T07:46:54-0400
The answer to the question is available in the PDF file https://www.assignmentexpert.com/https://www.assignmentexpert.com/homework-answers/programming-answer-76526.pdf
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS !
Learn more about our help with Assignments:
C++
Comments
int main() { cout
{ if (!rep) num_of_dups++; rep = true; copy_str[comp_symbol] = '#'; } } } return num_of_dups; }
string copy_str = str; int num_of_dups = 0; for (int symbol = 0; copy_str[symbol] != '\0'; symbol++) { bool rep = false; for (int comp_symbol = symbol + 1; copy_str[comp_symbol] != '\0'; comp_symbol++) { if (copy_str[symbol] == copy_str[comp_symbol] && ( (copy_str[comp_symbol] >= 'A' && copy_str[comp_symbol] = 'a' && copy_str[comp_symbol]
There was a misunderstanding what exactly should be calculated. Try this: #include using namespace std; int num_dups(string str) {
expected ans for num_dups("mississippi"); = 3 however get 7 for solution 1
Leave a comment