We are going to find lenght of a Linked List using iterative method. You can read the recursive method here. The simple logic to find length of a Linked list is – to increment a counter until you run out of nodes. Here is the simple algorithm. Step 1 :- Initialize a counter to 0 […]