mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 13:16:28 +08:00
33 lines
803 B
C#
33 lines
803 B
C#
|
// File: ListNode.cs
|
|||
|
// Created Time: 2022-12-16
|
|||
|
// Author: mingXta (1195669834@qq.com)
|
|||
|
|
|||
|
namespace hello_algo.utils;
|
|||
|
|
|||
|
/* 鏈結串列節點 */
|
|||
|
public class ListNode(int x) {
|
|||
|
public int val = x;
|
|||
|
public ListNode? next;
|
|||
|
|
|||
|
/* 將陣列反序列化為鏈結串列 */
|
|||
|
public static ListNode? ArrToLinkedList(int[] arr) {
|
|||
|
ListNode dum = new(0);
|
|||
|
ListNode head = dum;
|
|||
|
foreach (int val in arr) {
|
|||
|
head.next = new ListNode(val);
|
|||
|
head = head.next;
|
|||
|
}
|
|||
|
return dum.next;
|
|||
|
}
|
|||
|
|
|||
|
public override string? ToString() {
|
|||
|
List<string> list = [];
|
|||
|
var head = this;
|
|||
|
while (head != null) {
|
|||
|
list.Add(head.val.ToString());
|
|||
|
head = head.next;
|
|||
|
}
|
|||
|
return string.Join("->", list);
|
|||
|
}
|
|||
|
}
|