Skip to content

For this assignment, you will create a dictionary class that reads in a list of unsorted words into a <list> STL (which is an implementation of a doubly linked list.) from a file called dictionary.txtPreview the document. You will use a list of dictionary entries (DictEntry). Next, you must sort the list. The list STL has a member function .sort…

Notifications You must be signed in to change notification settings

ZeeshanK07/Dictionary-

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

*******************************************************
*  Name      :       Sharvita Paithankar   
*  Student ID:       108172438        
*  Class     :  CSC 2421           
*  Due Date  : March 8th 2018
*******************************************************


                 Read Me


*******************************************************
*  Description of the program
*******************************************************

The program takes in information from the file and creates
an list of words. It then sorts the list and takes in a word
from another file. It searches from that word in the list and
prints out the number of comparisons. 


*******************************************************
*  Source files
*******************************************************

Name:  main.cpp
   Main program.  This is the driver program that calls sub-functions
   to read data from an input file, uses the data to sort list and 
   find word from back and front  
Name:  DictEntry.h
   Contains the definition for the class DictEntry and Dictionary .  

Name: DictEntry.cpp
   Defines and implements the Dictionary class for implementing a linked list.
 It contains functions to sort the list, take in info from files and search for 
them in sorted list.  

   
*******************************************************
*  Status of program
*******************************************************

   The program runs successfully.  
   
   The program was developed and tested on Visual Studios g++.  It was 
   compiled, run, and tested on csegrid.ucdenver.pvt.

About

For this assignment, you will create a dictionary class that reads in a list of unsorted words into a <list> STL (which is an implementation of a doubly linked list.) from a file called dictionary.txtPreview the document. You will use a list of dictionary entries (DictEntry). Next, you must sort the list. The list STL has a member function .sort…

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 88.8%
  • Makefile 11.2%