Problem Description
Design a text editor with a cursor that can add text at the cursor's position, delete text from the left of the cursor, and move the cursor left or right. The cursor cannot move beyond the limits of the current text.
Key Insights
- The text editor maintains a mutable string and a cursor position.
- The addText operation appends text before the cursor and moves the cursor.
- The deleteText operation removes characters to the left of the cursor, returning the number of characters deleted.
- Cursor movements are constrained to the bounds of the current text, ensuring the cursor position remains valid.
Space and Time Complexity
Time Complexity: O(k) for addText and deleteText, O(1) for cursor movements.
Space Complexity: O(n) where n is the total length of the text.
Solution
To implement the text editor, we can use a list to represent the text for efficient insertions and deletions. The cursor position will be tracked as an integer index. The addText
function will insert characters at the cursor, deleteText
will remove characters to the left of the cursor, and the cursor movement functions will adjust the cursor position accordingly. The returned string for the left and right cursor movements will be derived from slicing the list.