Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In C, read in a character, determine if that character is a Unicode character and pull in the rest of the bytes for the character

In C, read in a character, determine if that character is a Unicode character and pull in the rest of the bytes for the character if it is, store the character in a data structure with a count of how many times it has appeared, sort the structure, and finally output the structure.image text in transcribed

image text in transcribedimage text in transcribed

Sample output shown above ^

1/A simple linked list implementation. Each element should represent a unique character. struct llist { //Variables are: /ext llist element /umber of occurrences // character array of size 4, containing the bytes to represent a single unicode character. I/A simple insertion function for the linked list. Recursion or while loop void insert_llist(llist **head, const char *to_insert){ //Three cases: //If head is NULL, malloc a new llist element and assign it to head. Give head a NULL next element, set occurrences to 1, and strcpy to_insert into head's character array. //Else if head's character array is the same as to_insert, according to strcmp, just iterate the number of occurrences. //Else move to the next element and repeat. 7/Simple printing of the linked list in order. void print_llist(llist *head) { // Loop while head != NULL, printf out (with correct formatting) the character array and number of occurrences. Move to the next element. / / 1/Comparison of llist frequency. Used in mergesort algorithm. int compare_freq(ilist *a, llist *b){ //return the difference of a's occurrences and b's occurrences. //MERGESORT ALGORITHM. llist *sort_llist(llist *head) { //Conceptually, mergesort creates two lists p and a which are really just pointers to different elements of head. //Compare the elements of these lists (of size 1) against each other and construct a new ordered list using this. //Then repeat with two lists of twice this size repeatedly until the list is fully sorted (= OxFO. 1/Declare a character array of size 4 to hold your unicode character. Declare a char pointer and set it equal to this array. You can then use this pointer with sprintf to read your bytes into your character array. A hint: if you add an integer to a pointer, it shifts where the pointer references, which can be useful in cases (such as arrays) where your values are stored consecutively in memory. //Loop from 0 to 1839 m->1799 h->1656 d->1550 g->1256 b->1196 y->1065 a->495 p->287 H->272 260 4->240 0->218 A->210 y->197 0->189 T->185 184= OxFO. 1/Declare a character array of size 4 to hold your unicode character. Declare a char pointer and set it equal to this array. You can then use this pointer with sprintf to read your bytes into your character array. A hint: if you add an integer to a pointer, it shifts where the pointer references, which can be useful in cases (such as arrays) where your values are stored consecutively in memory. //Loop from 0 to 1839 m->1799 h->1656 d->1550 g->1256 b->1196 y->1065 a->495 p->287 H->272 260 4->240 0->218 A->210 y->197 0->189 T->185 184

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases On The Web Designing And Programming For Network Access

Authors: Patricia Ju

1st Edition

1558515100, 978-1558515109

More Books

Students also viewed these Databases questions

Question

Design a job advertisement.

Answered: 1 week ago