C language programming, design of electronic English Chinese dictionaries

Updated on educate 2024-03-27
21 answers
  1. Anonymous users2024-02-07

    You can't learn this in school, so it's recommended that you go to the bookstore and buy a copy of C language to see it. Very simple. ,

  2. Anonymous users2024-02-06

    Do you want to do a GUI or a command line?

    What kind of features do you want to do and what kind of dictionary to display?

  3. Anonymous users2024-02-05

    To ensure efficiency, it is recommended to use a hash structure or a two-fork tree structure.

    You only need to provide insertion, deletion and retrieval functions.

    Also, define a structure for each cell of the dictionary.

    It can contain left and right pointers, its own nouns, and explanations, among other things.

    Then it is enough to implement the deletion and retrieval functions of the tree structure. This is available in the book on data structures.

    Then write a main function and you're good to go.

  4. Anonymous users2024-02-04

    It's not that easy, just a dictionary file is a problem.

    Secondly, there is a dictionary parsing or something.。。

    Hehe. Beautiful women seem to hate the program.。。

  5. Anonymous users2024-02-03

    It's too cumbersome, it feels like a course design or a vacation internship topic.

  6. Anonymous users2024-02-02

    This program 20 points will not be written by anyone.

  7. Anonymous users2024-02-01

    This person upstairs is very bs, and you need money to learn something.

    I haven't done this aspect yet, I'll give you an idea, as mentioned on the first floor, use dynamic singly linked lists, define the members to be involved in the struct, use the lookup function strcmp to compare strings, and then use file operations to store, of course, if you can connect to the database, it is better.

    The above can fulfill all the requirements of your topic.

  8. Anonymous users2024-01-31

    Writing a singly linked list will suffice these requirements.

  9. Anonymous users2024-01-30

    You look at your facial features, and after you work hard, you realize that the gap in IQ is insurmountable. Look at your facial features, and everyone who grows their own will not obey anyone.

  10. Anonymous users2024-01-29

    Basically, no, it should be about the same.

  11. Anonymous users2024-01-28

    No, it all depends on how you write it.

  12. Anonymous users2024-01-27

    I haven't learned such a deep C language, although I also study C programming and design in my major. I don't understand it very well, and I can't give you advice.

  13. Anonymous users2024-01-26

    This dictionary is all about English words! There are still English and others! I haven't used it yet! So I'm going to have to ask you!

  14. Anonymous users2024-01-25

    Basically, no one understands it.

  15. Anonymous users2024-01-24

    You send a reward of 200 yuan, let's divide the money first.

  16. Anonymous users2024-01-23

    What is this, I haven't seen it.

  17. Anonymous users2024-01-22

    This movie is the best interpretation of "hope".

  18. Anonymous users2024-01-21

    Problem Description:

    The design realizes the function of a simple two-way electronic English-Chinese dictionary, that is, it has the functions of English to Chinese and Chinese to English. Specific management operations include adding, displaying, finding, deleting, modifying, and saving words.

    2) Function Description:

    1) The design adopts an array of structures, and the structure of each data should include: words, phonetic transcription, parts of speech, Chinese interpretation 1, Chinese interpretation 2 and Chinese interpretation 3.

    2) System Functions:

    Entry: Add a word record.

    Information Display: Displays all words in alphabetical order.

    Word Modification: Modify the information of the entered word.

    Entry Deletion: Deletes a word record.

    Word query: Enter a word, output the Chinese definition of the word; Enter Chinese to output English words with the same meaning in Chinese.

    Message Save: Save the word information to a file.

    Log out of the system. 3) System Instructions: After performing a specific function, the program will re-display the function menu. The functions of the system are not limited to the above, but can be expanded and improved, such as when modifying and deleting information, the security of the system can be considered, and the operation can only be carried out if the correct password is entered before execution.

    3) Test data:

    There are about 30 entries that are required to be selected, mainly simple words.

    2 Design Requirements:

    1) The design is correct and the scheme is reasonable.

    2) The interface is friendly and easy to use.

    3) The program is concise and the structure is clear.

    4) Hands-on demonstration.

    3 Design Report Requirements:

    The format of the course design report is as follows:

    1) The format of the text: the first-level title is in No. 3 bold, the second-level heading is bold in No. 4 Song, and the text is in small No. 4 Song, with a line spacing of 22.

    2) The content of the text: the main functions of the subject, the division of the functional modules of the subject, the implementation of the main functions, program debugging, summary, attachments (the source of all programs, the necessary notes are required to be written on the program), and the course design report needs to be about 5000 words (excluding attachments).

    3) Binding order of course design report: cover, task book, table of contents, body, grading, program list attachments.

  19. Anonymous users2024-01-20

    Hello! What are the features to be achieved? Is it to enter English words, Chinese appears?

    Is there a requirement for the number of words in the dictionary?

  20. Anonymous users2024-01-19

    Thesaurus is required. Functions: Enter, Display, Modify, Delete, Query, Save. Each word should have parts of speech, phonetic transcription, and three Chinese interpretations. Ask for help.

  21. Anonymous users2024-01-18

    Write a dictionary software? The kind that can be queried?

Related questions
10 answers2024-03-27

You start by writing a function to find a sequence.

Then use for or while to call the !! >>>More

25 answers2024-03-27

First think about how many parts the whole program needs, and then what functions each part needs, and then think about the process of each part, the global variables needed, and then make it up according to the content of the design.

4 answers2024-03-27

The introductory course of MCU C language programming is not difficult, it is not easy to say, and the first thing to understand is to understand what these two things are when learning MCU C language? The introductory programming of single-chip microcomputer is mainly to learn C language, followed by circuit and programming language. >>>More

7 answers2024-03-27

#include

using namespace std; >>>More

7 answers2024-03-27

<> the first number as the root node, divide the next number into those larger than 30 and smaller than 30, the small number is placed on the left, the large number is placed on the right, and then in the order in which the numbers appear, one by one, the larger than the root node is placed on the right, and the small one is placed on the left.