码迷,mamicode.com
首页 > 2017年01月29日 > 全部分享
UVa 11728 Alternate Task
方法:数论 因为n <= factorsum(n) <= 1000, 可以暴力打表,求出所有n <= 1 所对应的factorsum(n), 求的时候甚至不需要O(n^0.5) 来判断因子,O(n) 判断也可以通过。 然而如果factorsum的范围很大该如何求呢。可以推导得出 。那么可以素数筛选预 ...
分类:其他好文   时间:2017-01-29 10:49:27    阅读次数:215
普林斯顿算法课Part2第二周作业_SeamCarving
作业地址:http://coursera.cs.princeton.edu/algs4/assignments/seamCarving.html 作业难点: 1、如何获取图形的RGB属性? 需要研习下Picture、Color类等,使用getRGB()、getRed()、getGreen()、get ...
分类:编程语言   时间:2017-01-29 10:47:42    阅读次数:390
Java复习-正则表达式2
通常这样写,这样写的效率比较高, Pattern pattern=Pattern.compile("a*b"); Matcher matcher=pattern.matcher("aaaaaab"); boolean flag=matcher.matches(); System.out.printl ...
分类:编程语言   时间:2017-01-29 10:48:57    阅读次数:168
MySQL常用查询
MySQL常用查询 一、实验简介 本节实验中我们将通过一个经销商数据库的实例来学习并实践多种常用的在数据库中查找记录的方法。 二、实验内容 在下面的例子中使用数据表shop来存储商人(经销商)的每件物品(物品号)对应的价格。假如每个商人对应的每个物品都有一个固定的价格,那么该表中的关键字就是物品和商 ...
分类:数据库   时间:2017-01-29 10:48:32    阅读次数:312
A TCP connection is distinguished by four values
4个值唯一地定义一条TCP连接。 HTTP The Definitive Guide A computer might have several TCP connections open at any one time. TCP keeps all these connections straigh ...
分类:其他好文   时间:2017-01-29 10:48:03    阅读次数:167
UVa 10673 Play with Floor and Ceil
方法 : 数论? 用k,x/k, x%k表示 ceil 和 floor,观察求解。 code: ...
分类:其他好文   时间:2017-01-29 10:44:50    阅读次数:199
238. Product of Array Except Self
Given an array of n integers where n > 1, nums, return an array output such that output[i] is equal to the product of all the elements of nums except  ...
分类:其他好文   时间:2017-01-29 10:45:29    阅读次数:228
42. Trapping Rain Water
Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining. ...
分类:移动开发   时间:2017-01-29 10:44:24    阅读次数:268
407. Trapping Rain Water II
Given an m x n matrix of positive integers representing the height of each unit cell in a 2D elevation map, compute the volume of water it is able to ...
分类:移动开发   时间:2017-01-29 10:43:41    阅读次数:307
还在羡慕BAT等公司的大流量的架构吗,commonrpc 是一个以netty 传输协议框架为基础(支持FTP)
还在羡慕BAT等公司的大流量的架构吗?让你的java系统引用解耦,互相独立,commonrpc 就可以办到。commonrpc 是一个以netty 传输协议框架为基础, 自定义 spring shcema标签的rpc框架,不侵入任何业务代码,插件模式,即插即用;一个高性能分布式rpc框架,支持tcp ...
分类:Web程序   时间:2017-01-29 10:45:39    阅读次数:294
设置将Maven的jar包发布到lib
2,设置将Maven的jar包发布到lib下。 Add -> Java Build Path Entries -> Maven Dependencies -> Finish 设置完成效果图 ...
分类:编程语言   时间:2017-01-29 10:43:05    阅读次数:171
Epigenetic variation among natural populations of the South African sandhopper Talorchestia capensis
这篇文献发表在Evolutionary Ecology,期刊点数不高,这篇paper质量也不高,但很传统和典型,是可以模仿和学习,部分语句也有抄袭嫌疑。对于我这样的新手还是挺有借鉴意义。 这篇文章和我的研究内容非常相近,当然我研究的是植物,而本文是水生动物。 Baldanzi, S., Watson ...
分类:Web程序   时间:2017-01-29 10:41:06    阅读次数:266
CSS属性之relative
0.相对定位relative特点 相对定位relative元素总是会占据位置,所占据的位置是在relative元素没有设置left/top/right/bottom属性时的位置; 相对定位relative元素在设置定位时,不会影响其他元素; 相对定位relative元素在设置定位时,是相对于自身的定 ...
分类:Web程序   时间:2017-01-29 03:01:41    阅读次数:292
求1000数字中13个相乘最大值
#include<stdio.h>int main(void){ int i,b; long long large; long long t; int x[2000]; for(i=1;i<=1000;i++) { scanf("%1d",&x[i]); } large=1; for(i=1;i<= ...
分类:其他好文   时间:2017-01-29 00:27:57    阅读次数:189
218条   上一页 1 ... 10 11 12 13
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!