Home > Back-end >  C language of questions about the linked list node data storage
C language of questions about the linked list node data storage

Time:04-26

How do I in the case of continuous input, each word in the text and punctuation (for example, He is a student.) in order to store in each node, each word or a punctuation to occupy a node,

CodePudding user response:

Read the text first and then parsing, create nodes, in a word or a punctuation;

  • Related