数据结构
数据结构
hlvy
这个作者很懒,什么都没留下…
展开
-
数据结构(java版) 之二次封装属于我们自己的数组
github 地址:https://github.com/heng1234/data-structure Array类 package com.company.Array; /** * Array * 自定义数组 * @author heng * @date 2019/9/24 **/ public class Array<E> { /**...原创 2019-09-28 18:51:58 · 184 阅读 · 0 评论 -
数据结构-基本队列的实现
基于实现二次封装数组https://blog.csdn.net/qq_39313596/article/details/101630245来实现 github 地址:https://github.com/heng1234/data-structure 队列接口 package com.company.Queue; /** * Queue * 队列接口 * @author heng ...原创 2019-10-02 19:53:44 · 149 阅读 · 0 评论 -
数据结构-循环队列的实现
github 地址:https://github.com/heng1234/data-structure 接口: package com.company.Queue; /** * Queue * 队列接口 * @author heng **/ public interface Queue<E>{ /** * 存入队列中 * @param e ...原创 2019-10-02 19:55:39 · 186 阅读 · 0 评论 -
Leetcode 算法第20题 有效的括号
题目地址:https://leetcode-cn.com/problems/valid-parentheses/ 给定一个只包括 '(',')','{','}','[',']'的字符串,判断字符串是否有效。 有效字符串需满足: 左括号必须用相同类型的右括号闭合。 左括号必须以正确的顺序闭合。 注意空字符串可被认为是有效字符串。 示例 1: 输入: "()" 输出: true 示例2...原创 2019-10-02 19:48:11 · 376 阅读 · 0 评论 -
栈的基本实现
基于实现二次封装数组https://blog.csdn.net/qq_39313596/article/details/101630245来实现 github 地址:https://github.com/heng1234/data-structure Stack接口 package com.company.Satck; /** * Stack * 栈的接口 * @author he...原创 2019-10-02 19:51:28 · 150 阅读 · 0 评论