链表专题(Golang)

中小厂手写题中最常见的是链表

LRU

用链表实现栈

go 复制代码
package main

import (
	"fmt"
)

type Node struct {
	Value int
	Next  *Node
}

type Stack struct {
	top *Node
}

// Push adds a new element to the top of the stack.
func (s *Stack) Push(value int) {
	newNode := &Node{Value: value, Next: s.top}
	s.top = newNode
}

// Pop removes the top element from the stack and returns its value.
// If the stack is empty, it returns -1 as an indicator.
func (s *Stack) Pop() int {
	if s.IsEmpty() {
		return -1 // Or any other sentinel value or error handling
	}
	value := s.top.Value
	s.top = s.top.Next
	return value
}

// Peek returns the value of the top element without removing it.
func (s *Stack) Peek() int {
	if s.IsEmpty() {
		return -1 // Or any other sentinel value or error handling
	}
	return s.top.Value
}

// IsEmpty checks if the stack is empty.
func (s *Stack) IsEmpty() bool {
	return s.top == nil
}

// Test function to verify the correctness of the stack implementation.
func testStack() {
	stack := &Stack{}

	// Test pushing elements
	stack.Push(10)
	stack.Push(20)
	stack.Push(30)

	// Test peeking the top element
	if stack.Peek() != 30 {
		fmt.Println("Peek failed")
	}

	// Test popping elements
	if stack.Pop() != 30 {
		fmt.Println("Pop failed for value 30")
	}
	if stack.Pop() != 20 {
		fmt.Println("Pop failed for value 20")
	}

	// Test popping from an empty stack should return -1
	if stack.Pop() != 10 {
		fmt.Println("Pop failed for value 10")
	}
	if stack.Pop() != -1 {
		fmt.Println("Pop from empty stack failed")
	}

	fmt.Println("All tests passed!")
}
相关推荐
EdwardYange2 小时前
LeetCode 83 :删除排链表中的重复元素
数据结构·算法·leetcode·链表
逊嘘5 小时前
【Java数据结构】链表相关的算法
java·数据结构·链表
网络风云13 小时前
【魅力golang】之-反射
开发语言·后端·golang
坊钰18 小时前
【Java 数据结构】合并两个有序链表
java·开发语言·数据结构·学习·链表
巫师不要去魔法部乱说1 天前
PyCharm专项练习3 图的存储:邻接矩阵+邻接链表
链表·pycharm
就爱学编程1 天前
重生之我在异世界学编程之数据结构与算法:单链表篇
数据结构·算法·链表
梅茜Mercy2 天前
数据结构:链表(经典算法例题)详解
数据结构·链表
我要出家当道士2 天前
Nginx单向链表 ngx_list_t
数据结构·nginx·链表·c
xiaocaibao7772 天前
编程语言的软件工程
开发语言·后端·golang
xiaocaibao7772 天前
Java语言的网络编程
开发语言·后端·golang