Hello. I'm working on run length encoding in C++ but I'm not sure where to start. Program requirements Use getline() to get a line of text from the user as input. The input from the user may contain alphabetic, punctuation, and whitespace characters. (Think about edge cases!) Additional info Recall that string objects are really just arrays of characters. ou can access the individual characters in a string using the [ ] notation. Example: sentence[3] == 'A' would compare the fourth position in the string sentence to see if it was equivalent to the ASCII character 'A'. The string object in C++ also has a method length() that will return how many characters are in the string. Example: int len = sentence.length() would assign the length of the string sentence to an integer variable called len.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Hello. I'm working on run length encoding in C++ but I'm not sure where to start.

Program requirements

  1. Use getline() to get a line of text from the user as input.
  2. The input from the user may contain alphabetic, punctuation, and whitespace characters.
  3. (Think about edge cases!)

Additional info

  • Recall that string objects are really just arrays of characters. ou can access the individual characters in a string using the [ ] notation. Example: sentence[3] == 'A' would compare the fourth position in the string sentence to see if it was equivalent to the ASCII character 'A'.
  • The string object in C++ also has a method length() that will return how many characters are in the string. Example: int len = sentence.length() would assign the length of the string sentence to an integer variable called len.
Sample Runs
Sample Run 1
Enter text to compress: a
la
Sample Run 2
Enter text to compress: aaaabbbbcccceee
4a4b4c3e
Sample Run 3
Enter text to compress: What is your favorite color?
1Wlhlaltl lilsl lylolulrl lflalvlolrliltlel lclolllolrl?
Transcribed Image Text:Sample Runs Sample Run 1 Enter text to compress: a la Sample Run 2 Enter text to compress: aaaabbbbcccceee 4a4b4c3e Sample Run 3 Enter text to compress: What is your favorite color? 1Wlhlaltl lilsl lylolulrl lflalvlolrliltlel lclolllolrl?
4
5 #include <fstream>
6 #include <iostream>
7
8 int main() {
9
10 std::string text;
11
12
13 ✓
14
15
16 ✓
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
int len text.length();
do {
}
std::cout<<"Enter text to compress: ";
getline(std::cin, text);
if (text == ) {
std::cout << text <<
}
std::cout <<< text << "\n";
for(int i = 0; i < text.length(); i++){
std::cout << text[i] << '\n';
}
Transcribed Image Text:4 5 #include <fstream> 6 #include <iostream> 7 8 int main() { 9 10 std::string text; 11 12 13 ✓ 14 15 16 ✓ 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 int len text.length(); do { } std::cout<<"Enter text to compress: "; getline(std::cin, text); if (text == ) { std::cout << text << } std::cout <<< text << "\n"; for(int i = 0; i < text.length(); i++){ std::cout << text[i] << '\n'; }
Expert Solution
steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Algebraic Expressions
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education