2024-11-06 15:44:28 +01:00
|
|
|
const std = @import("std");
|
2024-11-09 01:13:32 +01:00
|
|
|
const Allocator = std.mem.Allocator;
|
2024-11-06 15:44:28 +01:00
|
|
|
|
2024-11-09 01:13:32 +01:00
|
|
|
pub fn LList(comptime T: type) type {
|
2024-11-06 15:44:28 +01:00
|
|
|
return struct {
|
|
|
|
const Self = @This();
|
2024-11-08 20:26:58 +01:00
|
|
|
first: ?*Node(T),
|
2024-11-09 01:13:32 +01:00
|
|
|
alloc: Allocator,
|
2024-11-08 20:26:58 +01:00
|
|
|
|
2024-11-09 19:32:04 +01:00
|
|
|
|
2024-11-09 01:13:32 +01:00
|
|
|
pub fn init(this: *Self, allocator: Allocator) !void {
|
|
|
|
this.alloc = allocator;
|
2024-11-09 19:32:04 +01:00
|
|
|
this.first = null;
|
2024-11-06 15:44:28 +01:00
|
|
|
}
|
|
|
|
|
2024-11-09 19:32:04 +01:00
|
|
|
|
|
|
|
pub fn deinit(this: *Self) !void {
|
|
|
|
|
|
|
|
//? If there is no created Node
|
|
|
|
if (this.first == null) {
|
|
|
|
//? Nothing to do
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var currentNode: *Node(T) = this.first orelse unreachable;
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
const nextNode = currentNode.next orelse unreachable;
|
|
|
|
var breakNext = false;
|
|
|
|
|
|
|
|
if (nextNode.next == null) {
|
|
|
|
breakNext = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
try currentNode.deinit();
|
|
|
|
|
|
|
|
currentNode = nextNode;
|
|
|
|
|
|
|
|
if (breakNext == true) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
try currentNode.deinit();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
pub fn add(this: *Self, value: T ) !*Node(T){
|
|
|
|
|
|
|
|
const newNode: *Node(T) = try this.alloc.create(Node(T));
|
|
|
|
try newNode.init(this.alloc, value, this.first);
|
|
|
|
this.first = newNode;
|
|
|
|
|
|
|
|
return newNode;
|
2024-11-09 01:13:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-11-09 19:32:04 +01:00
|
|
|
pub fn printList(this: *Self) !void {
|
|
|
|
const writer = std.io.getStdOut().writer();
|
|
|
|
|
|
|
|
if (this.first == null) {
|
|
|
|
try writer.print("List is empty \n", .{});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var currentNode: *Node(T) = this.first orelse unreachable;
|
2024-11-09 01:13:32 +01:00
|
|
|
|
2024-11-09 19:32:04 +01:00
|
|
|
while (true) {
|
|
|
|
try writer.print("{any}\n", .{currentNode.value.*});
|
|
|
|
currentNode = currentNode.next orelse unreachable;
|
2024-11-09 01:13:32 +01:00
|
|
|
|
2024-11-09 19:32:04 +01:00
|
|
|
if (currentNode.next == null) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
try writer.print("{any}\n", .{currentNode.value.*});
|
2024-11-06 15:44:28 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2024-11-09 19:32:04 +01:00
|
|
|
|
2024-11-09 01:13:32 +01:00
|
|
|
pub fn Node(comptime T: type) type {
|
2024-11-06 15:44:28 +01:00
|
|
|
return struct {
|
|
|
|
const Self = @This();
|
2024-11-09 19:32:04 +01:00
|
|
|
alloc: Allocator,
|
2024-11-08 21:03:04 +01:00
|
|
|
next: ?*Self, //? Nächste Node in der Liste
|
2024-11-09 19:32:04 +01:00
|
|
|
value: *T,
|
2024-11-06 15:44:28 +01:00
|
|
|
|
2024-11-09 19:32:04 +01:00
|
|
|
pub fn init(this: *Self, allocator: Allocator, value: T, next: ?*Self) !void {
|
|
|
|
this.alloc = allocator;
|
2024-11-09 01:13:32 +01:00
|
|
|
this.next = next;
|
2024-11-09 19:32:04 +01:00
|
|
|
|
|
|
|
this.value = try this.alloc.create(T);
|
|
|
|
this.value.* = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
pub fn deinit(this: *Self) !void {
|
|
|
|
this.alloc.destroy(this.value);
|
|
|
|
this.alloc.destroy(this);
|
2024-11-06 16:07:42 +01:00
|
|
|
}
|
|
|
|
|
2024-11-09 19:32:04 +01:00
|
|
|
|
2024-11-06 16:07:42 +01:00
|
|
|
pub fn printNode(this: *Self) !void {
|
|
|
|
const writer = std.io.getStdOut().writer();
|
|
|
|
try writer.print("Value: {any} \n", .{this.value});
|
2024-11-06 15:44:28 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() !void {
|
2024-11-09 01:13:32 +01:00
|
|
|
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
|
|
|
|
const allocator = gpa.allocator();
|
2024-11-08 21:03:04 +01:00
|
|
|
|
|
|
|
var testList: LList(u64) = undefined;
|
2024-11-09 01:13:32 +01:00
|
|
|
try testList.init(allocator);
|
2024-11-09 19:32:04 +01:00
|
|
|
_ = try testList.add(1);
|
|
|
|
_ = try testList.add(2);
|
|
|
|
_ = try testList.add(3);
|
|
|
|
_ = try testList.add(4);
|
|
|
|
|
|
|
|
try testList.printList();
|
2024-11-09 01:13:32 +01:00
|
|
|
|
2024-11-09 19:32:04 +01:00
|
|
|
try testList.deinit();
|
2024-11-09 01:13:32 +01:00
|
|
|
}
|