0% found this document useful (0 votes)
1 views1 page

DS Lab Project

The document provides instructions for creating a dictionary using linked list concepts in functional programming. It outlines operations such as adding and deleting words, printing words starting with a specific character, counting entries for a character, and displaying the entire dictionary in a formatted manner. The goal is to maintain the words in lexicographical order.

Uploaded by

M Vinitha
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1 views1 page

DS Lab Project

The document provides instructions for creating a dictionary using linked list concepts in functional programming. It outlines operations such as adding and deleting words, printing words starting with a specific character, counting entries for a character, and displaying the entire dictionary in a formatted manner. The goal is to maintain the words in lexicographical order.

Uploaded by

M Vinitha
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

INSTRUCTIONS: Dear students this is miscellaneous problem on LINKED LIST

Create a Dictionary from the given set of words, the word should insert into the dict in
lexicographical order (alphabetical order)using linked list concept through functional
programming. And perform the following operations?

1. Adding a word to the dictionary?


2. Delete a word from dictionary?
3. Printing the entire list of a given character? Eg: A: ANT  APPLE  AXE
4. Counting the entries of given character ?Eg: C-2
5. Displaying the entire dictionary as below format?

A ANT APPLE AXE

B BAT BOX

C CAR CAT

D DOG

M MEN MET

Z ZEAL ZERO

You might also like