-
Notifications
You must be signed in to change notification settings - Fork 242
Timmy and tommy
TIP102 Unit 5 Session 1 Standard (Click for link to problem statements)
- 💡 Difficulty: Easy
- ⏰ Time to complete: 5-10 mins
- 🛠️ Topics: Classes, Linked Lists, Pointers
Understand what the interviewer is asking for by using test cases and questions about the problem.
-
How do we insert a new node between two existing nodes in a linked list?
- By adjusting the
next
pointers of the nodes to include the new node.
- By adjusting the
-
What attributes and methods are relevant for this problem?
- The
next
attribute of theNode
class.
- The
HAPPY CASE
Input:
tom_nook = Node("Tom Nook")
tommy = Node("Tommy")
timmy = Node("Timmy", tommy)
tom_nook.next = timmy
print(tom_nook.value) # Output: Tom Nook
print(tom_nook.next.value) # Output: Timmy
print(timmy.value) # Output: Timmy
print(timmy.next.value) # Output: Tommy
print(tommy.value) # Output: Tommy
print(tommy.next) # Output: None
Explanation:
The linked list is correctly updated to include `timmy` between `tom_nook` and `tommy`.
EDGE CASE
Input:
node1 = Node("Node 1")
node2 = Node("Node 2")
node1.next = node2
new_node = Node("New Node", node2)
node1.next = new_node
print(node1.value) # Output: Node 1
print(node1.next.value) # Output: New Node
print(new_node.value) # Output: New Node
print(new_node.next.value) # Output: Node 2
Explanation:
The new node is correctly inserted between the two existing nodes.
Match what this problem looks like to known categories of problems, e.g. Linked List or Dynamic Programming, and strategies or patterns in those categories.
For Linked List problems, we want to consider the following approaches:
- Create and link nodes using the
next
attribute. - Adjust the
next
pointers to insert nodes in the desired position.
Plan the solution with appropriate visualizations and pseudocode.
General Idea: Insert the new node timmy
between tom_nook
and tommy
by updating the next
pointers.
1) Define the `Node` class with `__init__` method to initialize `value` and `next` attributes.
2) Create an instance of `Node` for `tom_nook` with value "Tom Nook".
3) Create an instance of `Node` for `tommy` with value "Tommy".
4) Link `tom_nook` to `tommy` using the `next` attribute.
5) Create an instance of `Node` for `timmy` with value "Timmy" and `next` pointing to `tommy`.
6) Update the `next` attribute of `tom_nook` to point to `timmy`.
- Forgetting to set the
next
attribute oftimmy
totommy
. - Incorrectly referencing the
next
attribute.
Implement the code to solve the algorithm.
class Node:
def __init__(self, value, next=None):
self.value = value
self.next = next
# From previous problem
tom_nook = Node("Tom Nook")
tommy = Node("Tommy")
tom_nook.next = tommy
# Create and insert the new node
timmy = Node("Timmy", tommy)
tom_nook.next = timmy
Review the code by running specific example(s) and recording values (watchlist) of your code's variables along the way.
- Instantiate the nodes
tom_nook
,tommy
, andtimmy
. - Validate the linked list by checking the
value
andnext
attributes. - Ensure the nodes are linked correctly with
timmy
betweentom_nook
andtommy
.
Evaluate the performance of your algorithm and state any strong/weak or future potential work.
Assume N
represents the number of nodes in the linked list.
-
Time Complexity:
O(1)
because creating and linking nodes are constant-time operations. -
Space Complexity:
O(1)
for each node instance created.