链滴
社区愿景和功能特性
优雅的 Markdown 所见即所得编辑
快捷键交互
随时自由编辑分享内容
支持注销账号来去自由
分布式社区网络
开放 API
产品
Symphony 社区系统(Java)
Solo 博客系统(Java)
Vditor 编辑器(TypeScript)
思源笔记(Electron、Go)
Pipe 博客平台(Vue、Go)
发展计划表
发展简史
榜单
GitHub 仓库排行
帖子打赏排行
Solo 博客端排行
积分排行
活跃度排行
贡献排行
本站基于开源项目 Sym
编程代码问答
登录
注册
首页
>
标签
Stack
11
引用 •
3
回帖 •
302
浏览
参与讨论
关注
关注
分享
数组
8
引用 •
6
回帖
栈
7
引用
LeetCode
LeetCode
(力扣)是一个全球极客挚爱的高质量技术成长平台,想要学习和提升专业能力从这里开始,充足技术干货等你来啃,轻松拿下 Dream Offer!
209
引用 •
72
回帖
算法
428
引用 •
254
回帖 •
24
关注
数据结构
88
引用 •
115
回帖 •
4
关注
Easy
101
引用 •
10
回帖
默认
热议
好评
优选
最近回帖
关注者
查看所有标签
关于 SiYuan v3.1.12 后默认自动清理超过 180 天快照的调查
目前思源加入了自动的快照清理功能,触发时机如下: 手动触发同步 每 24 小时执行一次 默认的配置是保留 180 天内的快照,每天保留两份。 在启动、退出时的同步不会触发,但是 30s 的自动同步会触发。 我个人不喜欢这个设计,因此以下的描述可能会有偏颇。不喜欢的原因如下: 清理功能是自动的且没有开关默认开启,这导致假 ..
402
11 小时前
LeetCode 面试题 03.01. 三合一
[图片] Problem Description 三合一。描述如何只用一个数组来实现三个栈。 你应该实现: push(stackNum, value) pop(stackNum) isEmpty(stackNum) peek(stackNum) stackNum 表示栈下标,value 表示压入的值。 构造函数会传入一 ..
193
4 年前
数据结构:栈
[图片] 介绍 last-in-first-out,后进先出是它最大的特点。class Stack extends Vector 作为 Vector 的子类。 Vector 底层使用数组存储数据,所以 Stack 也是如此。 Stack 类自身的一些方法: 方法方法描述boolean empty()测试堆栈是否为空。O ..
113
4 年前
[每日 LeetCode] 20. Valid Parentheses
原文链接 [链接] Description: Given a string containing just the characters '(' , ')' , '{' , '}' , '[' and ']' , determine if the input string is valid. An input stri ..
103
5 年前
[每日 LeetCode] 155. Min Stack
原文链接 [链接] Description: Design a stack that supports push, pop, top, and retrieving the minimum element in constant time. push(x) -- Push element x onto stack. p ..
94
5 年前
[每日 LeetCode] 225. Implement Stack using Queues
原文链接 [链接] Description: Implement the following operations of a stack using queues. push(x) -- Push element x onto stack. pop() -- Removes the element on top of ..
86
5 年前
[每日 LeetCode] 232. Implement Queue using Stacks
原文链接 [链接] Description: Implement the following operations of a queue using stacks. push(x) -- Push element x to the back of queue. pop() -- Removes the element ..
107
5 年前
[每日 LeetCode] 496. Next Greater Element I
原文链接 [链接] Description: You are given two arrays (without duplicates) nums1 and nums2 where nums1’s elements are subset of nums2. Find all the next greater numbe ..
107
5 年前
[每日 LeetCode] 682. Baseball Game
原文链接 [链接] Description: You're now a baseball game point recorder. Given a list of strings, each string can be one of the 4 following types: Integer (one round's ..
114
5 年前
每日 LeetCode] 844. Backspace String Compare
Description: Given two strings S and T, return if they are equal when both are typed into empty text editors. # means a backspace character. Example 1: Input: S ..
111
5 年前
每日 LeetCode] 1021. Remove Outermost Parentheses
Description: A valid parentheses string is either empty (''),'(' + A + ')', or A + B, where A and B are valid parentheses strings, and + represents string conca ..
138
5 年前
Stack迭代器算不算是bug?
import java.util.*; class test { public static void main(String[] strs) { Stack s = new Stack(); s.add('one'); s.add('two'); s.add('three'); s.add('four'); Syst ..
450
8 年前