Skip to content

Files

Latest commit

806d130 · Nov 27, 2018

History

History
This branch is 212 commits behind 18-2-SKKU-OSS/2018-2-OSS-L1:master.

traversal

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Nov 27, 2018
Nov 27, 2018
Nov 27, 2018

Linked List Traversal

The task is to traverse the given linked list in straight order.

For example for the following linked list:

The order of traversal should be:

12 → 99 → 37

The time complexity is O(n) because we visit every node only once.

Reference