223k views
2 votes
. The limitingcondition for a list might be the number of elements in thelist.

a. True
b.False

User BeNerd
by
5.4k points

1 Answer

6 votes

Answer:

True

Step-by-step explanation:

Yes, the limiting condition of a linked list is the number of the elements that are present in the list. Consider a linked list contains 'n' number of elements, create an iterator which iterates over all the n elements of the linked list. So , in the limiting condition ( for loops , while loops, do while loops in all the looping conditions in fact in any conditions ) the iterator has to iterate over all the elements present in the linked list. So , the limiting condition is the number of elements in the list.

User David Kristensen
by
5.2k points