首页
首页
AI Coding
NEW
沸点
课程
直播
活动
AI刷题
APP
插件
搜索历史
清空
创作者中心
写文章
发沸点
写笔记
写代码
草稿箱
创作灵感
查看更多
会员
登录
注册
数据结构与算法
NatsuiroGinga
创建于2023-03-04
订阅专栏
数据结构与算法
等 1 人订阅
共68篇文章
创建于2023-03-04
订阅专栏
默认顺序
默认顺序
最早发布
最新发布
LeetCode 844. Backspace String Compare
LeetCode 844. Backspace String Compare 题目描述 Given two strings s and t, return true if they are equal
LeetCode 299. Bulls and Cows
LeetCode 299. Bulls and Cows You are playing the Bulls and Cows game with your friend.
LeetCode 116. Populating Next Right Pointers in Each Node
LeetCode 116. Populating Next Right Pointers in Each Node https://leetcode.com/problems/populating-n
LeetCode 424. Longest Repeating Character Replacement
LeetCode 424. Longest Repeating Character Replacement https://leetcode.com/problems/longest-repeatin
LeetCode 438. Find All Anagrams in a String
LeetCode 438. Find All Anagrams in a String 题目描述 Given two strings s and p, return an array of all t
Go刷题常用数据结构和算法
数据结构 字符串 string 访问字符串中的值 通过下标访问 通过切片访问 通过for-range循环访问 查询字符是否属于特定字符集 slice模拟stack 创建栈 入栈 出栈 判断栈是否为空
中序遍历二叉搜索树(BST)及其应用(Go语言)
中序遍历二叉搜索树(BST)及其应用(Go语言) 数据结构 1. 标准的中序遍历BST Leecode94: Binary Tree Inorder Traversal 2. 找到 BST 中第 K
快慢指针(Fast-slow Pointers)概念及其应用
快慢指针(Fast-slow Pointers) 1. 概念介绍 快慢指针是一种常用的技巧,用于解决链表中的问题。 快慢指针的思想是:两个指针以不同的速度遍历链表,从而达到目的。 快慢指针的常见应用: