/** * Implementation of a stack using nodes. * Unlimited size, no arraylist. * * @author Kyler Smith, 2017 */ public class NodeStack<Item> { /** * Ent ...
分类:
其他好文 时间:
2019-11-27 01:15:57
阅读次数:
94
文件下载命令 wget //文件下载 [root@localhost ~] ll total 4 rw . 1 root root 1317 Feb 17 19:25 anaconda ks.cfg [root@localhost ~] wget www.baidu.com 2019 02 17 1 ...
分类:
系统相关 时间:
2019-11-12 10:49:19
阅读次数:
103
时间限制(普通/Java):5000MS/15000MS 内存限制:65536KByte 描述 Suppose that the fourth generation mobile phone base stations in the Tampere area operate as follows. ...
分类:
编程语言 时间:
2019-11-08 21:23:21
阅读次数:
124
[TOC] 前端与算法 leetcode 189. 旋转数组 题目描述 "189. 旋转数组" 概要 把他当做一到简单的题来做,不要想太多了就好也可以不整那些花里胡哨的,直接旋转数组n次,我一开始也想到了这个办法,但是觉得太简单而且效率低下,想了很久也没想到合适的办法 提示 使用额外的数组 解析 用 ...
分类:
编程语言 时间:
2019-11-05 20:05:39
阅读次数:
89
I would bet my life, like I bet my heart我以生命与真心担保That you were the one, baby你就是我的命中注定I've never been so sure of anything before在你之前我从未如此肯定过某件事You're d ...
分类:
其他好文 时间:
2019-10-30 22:20:36
阅读次数:
111
原文链接:https://www.devdungeon.com/content/packet-capture-injection-and-analysis-gopacket 接口文档:https://godoc.org/github.com/google/gopacket Demo1(Find de ...
分类:
其他好文 时间:
2019-10-22 18:40:32
阅读次数:
85
http://acm.hdu.edu.cn/showproblem.php?pid=1114 Piggy-Bank Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submis ...
分类:
其他好文 时间:
2019-10-20 01:07:03
阅读次数:
84
颜色排序,中文又叫做荷兰国旗。好吧,题意是给一个数组,里面只有0,1,2三个数字,把数组排序成[0, 0, 0, 1, 1, 1, ....1, 2, 2, 2, 2, 2]的样子。 思路是two pointer夹逼扫描,遇到0就放在左起当前的位置,遇到1就不处理,遇到2就放在右起当前位置。代码如下 ...
分类:
其他好文 时间:
2019-10-17 01:23:08
阅读次数:
85
题目链接: "LightOJ 1027" Description You are in a maze; seeing $n$ doors in front of you in beginning. You can choose any door you like. The probability f ...
分类:
其他好文 时间:
2019-10-13 20:58:26
阅读次数:
116
原文地址:https://www.cnblogs.com/f-anything/p/10084215.html 一、概述 spring框架提供的RestTemplate类可用于在应用中调用rest服务,它简化了与http服务的通信方式,统一了RESTful的标准,封装了http链接, 我们只需要传入 ...
分类:
其他好文 时间:
2019-09-25 12:14:23
阅读次数:
75