Please help with the bolded functions: I need to implement the following two functions that get a string, and compute an array of non-empty tokens of the string containing only lower-case letters. For example: ● For a string "abc EFaG hi", the list of tokens with only lower-case letters is ["abc", "hi"]. ● For a string "ab 12 ef hi ", the list of such tokens is ["ab","ef","hi"]. ● For a string "abc 12EFG hi ", the list of such tokens is ["ab","hi"]. ● For a string " abc ", the list of such tokens is ["abc"]. ● For a string "+*abc!! B" the list of such tokens is empty. That is, we break the string using the spaces as delimiters (ascii value 32), and look only at the tokens with lower-case letters only . Q1. The function count_tokens gets a string str, and returns the number of such tokens. int count_tokens(const char* str); For example: ● count_tokens("abc EFaG hi") needs to return 2. ● count_tokens("ab 12 ef hi") needs to return 3. ● count_tokens("ab12ef+") needs to return 0. Q2.  The function get_tokens gets a string str, and returns the array with the tokens containing only lower-case letters in the correct order. The length of the array should be the number of tokens, computed in count_tokens. char** get_tokens(const char* str); For example: ● get_tokens("abc EFaG hi") needs to return ["abc","hi"] ● get_tokens("++a+ b + c") needs to return ["b","c"]. ● get_tokens("ab12ef+") needs to return either NULL or an empty array. Remark: Note that the returned array and the strings in it must all be dynamically allocated.

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

Please help with the bolded functions:

I need to implement the following two functions that get a string, and compute an array of non-empty tokens of the string containing only lower-case letters. For example:
● For a string "abc EFaG hi", the list of tokens with only lower-case letters is ["abc", "hi"].
● For a string "ab 12 ef hi ", the list of such tokens is ["ab","ef","hi"].
● For a string "abc 12EFG hi ", the list of such tokens is ["ab","hi"].
● For a string " abc ", the list of such tokens is ["abc"].
● For a string "+*abc!! B" the list of such tokens is empty.


That is, we break the string using the spaces as delimiters (ascii value 32), and look only at the tokens with lower-case letters only .


Q1. The function count_tokens gets a string str, and returns the number of
such tokens.


int count_tokens(const char* str);


For example:
● count_tokens("abc EFaG hi") needs to return 2.
● count_tokens("ab 12 ef hi") needs to return 3.
● count_tokens("ab12ef+") needs to return 0.


Q2.  The function get_tokens gets a string str, and returns the array with the
tokens containing only lower-case letters in the correct order. The length of the array
should be the number of tokens, computed in count_tokens.


char** get_tokens(const char* str);


For example:
● get_tokens("abc EFaG hi") needs to return ["abc","hi"]
● get_tokens("++a+ b + c") needs to return ["b","c"].
● get_tokens("ab12ef+") needs to return either NULL or an empty array.
Remark: Note that the returned array and the strings in it must all be dynamically allocated.

Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Arrays
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
  • SEE MORE 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