a kinda confused add function

main
Anastasia Kisner 2024-11-09 01:13:32 +01:00
parent c118f0fc7d
commit 83f6a03ff5
1 changed files with 29 additions and 9 deletions

View File

@ -1,28 +1,45 @@
const std = @import("std");
const Allocator = std.mem.Allocator;
pub fn LList (comptime T: type) type {
pub fn LList(comptime T: type) type {
return struct {
const Self = @This();
first: ?*Node(T),
alloc: Allocator,
pub fn init(this: *Self) !void { // ! allocator: *std.mem.allocator als zweiter Parameter
this.first = null;
pub fn init(this: *Self, allocator: Allocator) !void {
this.alloc = allocator;
this.first = try allocator.create(Node(T));
}
pub fn deinit() void {
pub fn deinit(this: *Self) void {
//TODO
this.alloc.destroy(T); //? Muss in einer Schleife durchlaufen
}
pub fn add(this: *Self, value: T ) *type{
const newFirst = try this.alloc.create(Node(T));
var node: Node(T) = undefined;
this.first.* = try node.init(value, this.first);
this.first = newFirst;
return this.first;
}
};
}
pub fn Node (comptime T: type) type {
pub fn Node(comptime T: type) type {
return struct {
const Self = @This();
next: ?*Self, //? Nächste Node in der Liste
value: T,
pub fn init(this: *Self, value: T) void {
pub fn init(this: *Self, value: T, next: ?*Self) void {
this.value = value;
this.next = next;
}
pub fn printNode(this: *Self) !void {
@ -33,7 +50,10 @@ pub fn Node (comptime T: type) type {
}
pub fn main() !void {
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
const allocator = gpa.allocator();
var testList: LList(u64) = undefined;
try testList.init();
}
try testList.init(allocator);
}