码迷,mamicode.com
首页 >  
搜索关键字:anything    ( 347个结果
栈的Node实现方式
/** * 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
Linux基础-文件下载命令
文件下载命令 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
poj1195 Mobile phones(二维树状数组)
时间限制(普通/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
前端与算法 leetcode 189. 旋转数组
[TOC] 前端与算法 leetcode 189. 旋转数组 题目描述 "189. 旋转数组" 概要 把他当做一到简单的题来做,不要想太多了就好也可以不整那些花里胡哨的,直接旋转数组n次,我一开始也想到了这个办法,但是觉得太简单而且效率低下,想了很久也没想到合适的办法 提示 使用额外的数组 解析 用 ...
分类:编程语言   时间:2019-11-05 20:05:39    阅读次数:89
look at me
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
使用 gopacket 进行数据包捕获,注入和分析
原文链接: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
[LeetCode] 75. Sort Colors
颜色排序,中文又叫做荷兰国旗。好吧,题意是给一个数组,里面只有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 A Dangerous Maze (期望)
题目链接: "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
RestTemplate使用教程
原文地址:https://www.cnblogs.com/f-anything/p/10084215.html 一、概述 spring框架提供的RestTemplate类可用于在应用中调用rest服务,它简化了与http服务的通信方式,统一了RESTful的标准,封装了http链接, 我们只需要传入 ...
分类:其他好文   时间:2019-09-25 12:14:23    阅读次数:75
347条   上一页 1 2 3 4 5 6 ... 35 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!