7.6k views
2 votes
Disregarding any references or pointers in data elements, i.e., the info components, how many null pointers are there in a properly maintained circular linked list that is not empty

User Xpereta
by
5.4k points

1 Answer

2 votes

Answer:

There are no null pointers.

Step-by-step explanation:

Each element in a circular linked list points to exactly one other element, thus closing the loop and making it "circular".

User Thariq Nugrohotomo
by
5.1k points