mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-27 03:16:29 +08:00
22 lines
349 B
Dart
22 lines
349 B
Dart
|
/**
|
||
|
* File: PrintUtil
|
||
|
* Created Time: 2023-01-23
|
||
|
* Author: Jefferson (JeffersonHuang77@gmail.com)
|
||
|
*/
|
||
|
|
||
|
import 'ListNode.dart';
|
||
|
|
||
|
class PrintUtil {
|
||
|
|
||
|
void printLinkedList(ListNode? head) {
|
||
|
List<String> list = [];
|
||
|
|
||
|
while (head != null) {
|
||
|
list.add('${head.val}');
|
||
|
head = head.next;
|
||
|
}
|
||
|
|
||
|
print(list.join(' -> '));
|
||
|
}
|
||
|
}
|