Add the module TypeScript code (Chapter of Linkedlist)

pull/88/head
justin 2022-12-11 23:52:17 +08:00
parent ad5ba2e955
commit 4f1433f802
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,9 @@
// Definition for singly-linked list.
export default class ListNode {
val: number;
next: ListNode | null;
constructor(val?: number, next?: ListNode | null) {
this.val = val === undefined ? 0 : val;
this.next = next === undefined ? null : next;
}
}

View File

@ -0,0 +1,18 @@
/*
* File: PrintUtil.ts
* Created Time: 2022-12-10
* Author: Justin (xiefahit@gmail.com)
*/
import ListNode from './ListNode';
function printLinkedList(head: ListNode | null): void {
const list: string[] = [];
while (head !== null) {
list.push(head.val.toString());
head = head.next;
}
console.log(list.join(' -> '));
}
export { printLinkedList };