mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 02:06:30 +08:00
20 lines
457 B
Zig
20 lines
457 B
Zig
|
// File: ListNode.zig
|
||
|
// Created Time: 2023-01-07
|
||
|
// Author: sjinzh (sjinzh@gmail.com)
|
||
|
|
||
|
const std = @import("std");
|
||
|
|
||
|
// Definition for a singly-linked list node
|
||
|
pub fn ListNode(comptime T: type) type {
|
||
|
return struct {
|
||
|
const Self = @This();
|
||
|
|
||
|
val: T = 0,
|
||
|
next: ?*Self = null,
|
||
|
|
||
|
// Initialize a list node with specific value
|
||
|
pub fn init(self: *Self, x: i32) void {
|
||
|
self.val = x;
|
||
|
}
|
||
|
};
|
||
|
}
|