1.前言 看完咕泡Jack前辈的有关hashMap的视频(非宣传,jack自带1.5倍嘴速,高效),收益良多,所以记录一下学习到的东西。 2.基础用法 源码的注释首先就介绍了哈希表是基于Map接口,所以它的用法和其他集合的用法差不多。 /** * Hash table based implement ...
分类:
其他好文 时间:
2019-12-20 18:48:46
阅读次数:
138
php抽象类和接口的区别 https://www.cnblogs.com/vinter/p/8716685.html 什么时候适合使用 多个角色配合工作:抽象角色对应具体角色; <?php interface icar{ function Run(); } class daben implement ...
分类:
Web程序 时间:
2019-12-18 14:54:00
阅读次数:
85
``` class MyStack { public: /** Initialize your data structure here. */ MyStack() { } /** Push element x onto stack. */ void push(int x) { dataqueue.p... ...
分类:
其他好文 时间:
2019-12-18 13:00:59
阅读次数:
81
链接: https://codeforces.com/contest/1263/problem/E 题意: The development of a text editor is a hard problem. You need to implement an extra module for br ...
分类:
其他好文 时间:
2019-12-17 13:30:17
阅读次数:
95
原题链接在这里:https://leetcode.com/problems/snapshot-array/ 题目: Implement a SnapshotArray that supports the following interface: SnapshotArray(int length) i ...
分类:
其他好文 时间:
2019-12-15 11:03:47
阅读次数:
96
文章目录: 题目 脚本一 脚本一逻辑 题目: 实现 strStr() 函数。 给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回 -1。 示例 1: 输入: haystack = ...
分类:
其他好文 时间:
2019-12-14 10:12:39
阅读次数:
90
实现 strStr() 函数。 给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回 -1。 示例 1: 输入: haystack = "hello", needle = "ll"输 ...
分类:
Web程序 时间:
2019-12-11 19:07:20
阅读次数:
91
In this lesson, you will learn how to implement business classes for your application using the Business Class Library. This library contains the most ...
分类:
其他好文 时间:
2019-12-11 12:42:44
阅读次数:
80
http://acm.hdu.edu.cn/showproblem.php?pid=2089 解题思路: 对于这道题,猛一看到脑袋里出现的就是暴力的做法,当然不能这样,会TLE。 打表是一定要打的。但是如何打的优美就是一个值得思考的问题了。这里我了解到一个很好的找数字里面有无62或4的方法。 我们可 ...
分类:
其他好文 时间:
2019-12-11 00:08:24
阅读次数:
87
原题链接在这里:https://leetcode.com/problems/basic-calculator-iii/ 题目: Implement a basic calculator to evaluate a simple expression string. The expression st ...
分类:
其他好文 时间:
2019-12-08 11:06:22
阅读次数:
123