Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Python 3. In this assignment you will compare three implementations of storing text files: (1) One continuous string (newline char as separator). (2) List of

Python 3. In this assignment you will compare three implementations of storing text files: (1) One continuous string (newline char as separator). (2) List of strings where each string represents a line Each of these representations has to be implemented as a separate class and, of course, each in its own separate Python file. For each class, you will write editor functions (class methods) to move the cursor. In each representation, you use a cursor to represent the current position. For example, for (1) the cursor is just the position (index). For (2), the cursor is a pair: the index of the line and the position within the corresponding line string. Finally, for (3) the cursor is a pointer to the node (containing the line) and the position within that line. Write (and test) the following 10 functions (names are taken from old vi editor) for each class (1) cmd_h: move cursor one character to the left (2) cmd_I: move cursor one character to the right (3) cmd_j: move cursor vertically one line (4) cmd_k: move cursor vertically one line (5) cmd_X: delete the character to the left of the cursor (6) cmd_D: remove on current line from cursor to the end (7) cmd_dd: delete current line and move cursor to the beginning of next line (8) cmd_ddp: transpose two adjacent lines (9) cmd_n: search for next occurrence of a string (assume that string to be searched is fully in one line. (10) cmd_wq: write your representation as text file and save it

For testing, you will read the following nerdy poem (from the Zen of Python) into your file representation.

Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than complicated.

After each command, print the contents of your file with character ^ as cursor. Example: your initial configuration is ^Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than complicated.

After executing cmd_n(better), your representation should print:

Beautiful is ^better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than complicated.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Database Management

Authors: Jeff Hoffer, Ramesh Venkataraman, Heikki Topi

12th edition

133544613, 978-0133544619

More Books

Students also viewed these Databases questions