online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
#include <iostream> #include <map> #include <sstream> int findExactMatchIndex(const std::string &totalString, const std::string &toBeSearched) { std::istringstream ss(totalString); std::string word; std::size_t index = 0; while(ss >> word) { if(word == toBeSearched) { return index; } ++index; } return -1;//return -1 when the string to be searched is not inside the inputString } int main() { std::string inputString = "this is a string containing my name again and again and again ", word; //this map maps the std::string to their respective count std::map<std::string, int> wordCount; std::istringstream ss(inputString); while(ss >> word) { //std::cout<<"word:"<<word<<std::endl; wordCount[word]++; } std::cout<<"Total unique words are: "<<wordCount.size()<<std::endl; std::size_t i = 0; std::istringstream gothroughStream(inputString); //just go through the inputString(stream) instead of map while( gothroughStream >> word) { int index = findExactMatchIndex(inputString, word); if(index != -1 && (index == i)){ std::cout << word <<"-" << wordCount.at(word)<<std::endl; } ++i; } return 0; }

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue