-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathundo_redo_system.py
More file actions
57 lines (39 loc) · 1.47 KB
/
undo_redo_system.py
File metadata and controls
57 lines (39 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Import the Node class you created in node.py
from node import Node
# Implement your Stack class here
class Stack:
pass # delete this line
def run_undo_redo():
# Create instances of the Stack class for undo and redo
while True:
print("\n--- Undo/Redo Manager ---")
print("1. Perform action")
print("2. Undo")
print("3. Redo")
print("4. View Undo Stack")
print("5. View Redo Stack")
print("6. Exit")
choice = input("Select an option: ")
if choice == "1":
action = input("Describe the action (e.g., Insert 'a'): ")
# Push the action onto the undo stack and clear the redo stack
print(f"Action performed: {action}")
elif choice == "2":
# Pop an action from the undo stack and push it onto the redo stack
pass # delete this line
elif choice == "3":
# Pop an action from the redo stack and push it onto the undo stack
pass # delete this line
elif choice == "4":
# Print the undo stack
print("\nUndo Stack:")
elif choice == "5":
# Print the redo stack
print("\nRedo Stack:")
elif choice == "6":
print("Exiting Undo/Redo Manager.")
break
else:
print("Invalid option.")
if __name__ == "__main__":
run_undo_redo()