HashMap的小优化 HashMap是我们平日内用的非常多的集合框架,网上介绍有很多的实现原理,在存放数据数量已知的情况下,我们可以在构建hashmap的时候指定其容量,减少扩展空间时消...
字符串翻转的两种方法(1:利用额外空间 2:交换) #include<iostream>using namespace std;#define STRLENTH 100char *str_reverse1(char *str){char temp[STRLENTH];//字符数组:存放逆序后的字符cha...
UVa11582 - Colossal Fibonacci Numbers!(模运算) #include<iostream>#include<cstdio>#include<cstring>#include<cmath>#include<stack>#include<vector>#include<map>#include<s...
acdream 1705(暴力) 题意:有一块n*m大的草坪,’.’表示空地,’x’表示种了棵树,现在要给这块草坪建一个矩形栅栏,栅栏必须建在空地上,问栅栏建好的最大周长是多少,也就是最多...
poj3264 Balanced Lineup Time Limit:5000MSMemory Limit:65536KTotal Submissions:37683Accepted:17656Case Time Limit:2000MS
杭电1503(Advanced Fruits) 点击打开杭电1503Problem DescriptionThe company "21st Century Fruits" has specialized in creating new sorts of fruits by transferring g...
angularjs调用springmvc action时,访问到action但是数据不能正确返回到angular controller中
python SocketServer 框架编程 1. SocketServer框架在python中,socketserver是一个已集成的模块,它有以下特点: 可用SocketServer框架创建TCP和UDP服务器。在后台为你做好每一个基...
FZU 1753-Another Easy Problem(求多个组合数的最大公约数) Another Easy Problem
Java正则表达式 一、概述正则表达式是一串描述一个字符序列的字符,可以用来查找其他字符序列中的匹配项。支持正则表达式处理的是两个类:Pattern和Matcher,使用Pattern定...