Traverse Operation
In traversing operation of an array, each element of an array is accessed exactly for once for processing. This is also called visiting of an array.
This operation is to traverse through the elements of an array.
Algorithm:
Step 1: Start=0Step 2: Repeat Step3 while (START<N)Step 3: Read A [START]START = START+1
Traverse Operation
Reviewed by Tech Specifier
on
May 09, 2020
Rating:
No comments: