This is a Text Editor built using JAVA with the help of Linked List and Stack.
Each line of sentence is represented by a node of Linked List. Which means one sentence is saved in one node. Each node consists of two parts, one is data part and another is pointer to the next node. This program uses Stack for UNDO and REDO operations.
This program can do the following tasks:
- Insert Data
- Delete Data
- Update Data
- Append Data
- Search Data
- Undo
- Redo
- Create File
- Save File
- Edit Existing File
- Read File
- Open File