Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

Question

solve in C please.

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 ["abc","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 .
1. 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.
2. 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.

Expert Solution
Check Mark
Knowledge Booster
Background pattern image
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
    Text book image
    Database System Concepts
    Computer Science
    ISBN:9780078022159
    Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
    Publisher:McGraw-Hill Education
    Text book image
    Starting Out with Python (4th Edition)
    Computer Science
    ISBN:9780134444321
    Author:Tony Gaddis
    Publisher:PEARSON
    Text book image
    Digital Fundamentals (11th Edition)
    Computer Science
    ISBN:9780132737968
    Author:Thomas L. Floyd
    Publisher:PEARSON
    Text book image
    C How to Program (8th Edition)
    Computer Science
    ISBN:9780133976892
    Author:Paul J. Deitel, Harvey Deitel
    Publisher:PEARSON
    Text book image
    Database Systems: Design, Implementation, & Manag...
    Computer Science
    ISBN:9781337627900
    Author:Carlos Coronel, Steven Morris
    Publisher:Cengage Learning
    Text book image
    Programmable Logic Controllers
    Computer Science
    ISBN:9780073373843
    Author:Frank D. Petruzella
    Publisher:McGraw-Hill Education