码迷,mamicode.com
首页 > 2015年05月29日 > 全部分享
一个就简单的数学题 NYOJ 330
1 #include//一个就简单的数学题(330) 2 #include 3 int a[100010]; 4 int main() 5 { 6 int x,m,yu; 7 scanf("%d",&x); 8 while(x--){ 9 scanf("%...
分类:其他好文   时间:2015-05-29 08:34:59    阅读次数:131
06 其他内置组件
//缩略图简单的缩略图 //当屏幕尺寸小的时候使用col-xs-6 当屏幕尺寸大的时候使用col-md-3 显示效果如下://缩略图(二)复杂的缩略图 //屏幕尺寸小的时候就用c...
分类:其他好文   时间:2015-05-29 08:35:10    阅读次数:89
九的余数 NYOJ 105
1 #include//九的余数(105) 2 #include 3 char a[1000005]; 4 int main() 5 { 6 int x,t,i,res; 7 scanf("%d",&x); 8 while(x--){ 9 memset(a...
分类:其他好文   时间:2015-05-29 08:36:49    阅读次数:157
月老的烦恼(1) NYOJ 478
1 #include//月老的烦恼(1)(478) 2 #include 3 #include 4 #define MAX 500000 5 int a[MAX]; 6 void count() 7 { 8 int i,j,t; 9 t=MAX/2;10 memset(...
分类:其他好文   时间:2015-05-29 08:35:10    阅读次数:143
次方求模 NYOJ 102
1 #include//次方求模(102) 2 long long power(int a,int b,int c) 3 { 4 long long t; 5 if(b==0)return 1%c; 6 if(b==1)return a%c; 7 t=power(a...
分类:其他好文   时间:2015-05-29 08:34:49    阅读次数:96
Dev ChartControl鼠标移动显示坐标点
his.chartIRC_RATES.MouseMove += new MouseEventHandler(chartIRC_RATES_MouseMove); ToolTipController toolTipController = new ToolTipController(); /// .....
分类:移动开发   时间:2015-05-29 08:35:55    阅读次数:172
Cygwin
让cygwin shell使用英文界面只用在~/.bashrc这个文件里面加上一句话:export LANG='en_US'
分类:Windows程序   时间:2015-05-29 08:34:55    阅读次数:123
数的长度 NYOJ 69
1 #include//数的长度(69) 2 #include 3 int main() 4 { 5 int x,i,m; 6 double sum; 7 scanf("%d",&x); 8 while(x--){ 9 scanf("%d",&m)...
分类:其他好文   时间:2015-05-29 08:34:28    阅读次数:100
超级台阶 NYOJ 76
1 #include//超级台阶(76) 2 #include 3 int f(int x){ 4 int sum=0,i,a[45],t; 5 memset(a,0,sizeof(a)); 6 a[0]=1;a[1]=1; 7 for(i=0;i=2)a[i]=...
分类:其他好文   时间:2015-05-29 08:34:06    阅读次数:88
天题系列:Regular Expression Matching
烧脑神题public class Solution { public boolean isMatch(String s, String p) { // 反正我是想不出来 http://www.cnblogs.com/springfor/p/3893593.html ...
分类:其他好文   时间:2015-05-29 08:34:13    阅读次数:101
精挑细选 NYOJ 263
#include//精挑细选(263) int main(){ int x,y,i,a,b,c,m,n,q; scanf("%d",&x); while(x--){ scanf("%d",&y); y--; scanf("%d%d%d",&...
分类:其他好文   时间:2015-05-29 08:33:13    阅读次数:120
完全覆盖 NYOJ 328
1 #include//完全覆盖(328) 2 int main() 3 { 4 int x,a,b,m,n,p,q; 5 scanf("%d",&x); 6 while(x--){ 7 scanf("%d%d",&a,&b); 8 if(...
分类:其他好文   时间:2015-05-29 08:33:24    阅读次数:185
不再爱你 NYOJ 449
#include//不再爱你(449) #includeint main(){ int x,t; double a,b; scanf("%d",&x); while(x--){ scanf("%lf%d%lf",&a,&t,&b); printf(...
分类:其他好文   时间:2015-05-29 08:34:30    阅读次数:159
【leetcode】Insertion Sort List
Sort a linked list using insertion sort. 1 class Solution { 2 public: 3 ListNode* insertionSortList(ListNode* head) { 4 ListNode *newhead=...
分类:其他好文   时间:2015-05-29 08:34:03    阅读次数:103
切图总结
前些日子仿了优酷的首页,中间遇到一些问题,积累了点经验,做个总结。1. 需要最先明白的两点不要只是无脑的切图,要去体会设计师的意图,不仅仅是还原设计稿,而且要尽可能去还原设计师的设计理念。切图的时候就提前想好需求可能会有变化,这要求我们提前做点工作,减少需求变化时的工作量,一般是提取页面中的公共组件...
分类:其他好文   时间:2015-05-29 08:33:41    阅读次数:137
Tomcat:自动部署、自动重加载、自动编译
麻雀虽小,五脏俱全,Tomcat 提供的自动部署、自动重加载、自动编译功能,可谓是让人又爱又恨。接下来就对这三者做一个介绍,文章中会Copy一些官方文档中的说法。If you are using the standardHostimplementation, the following ac...
分类:其他好文   时间:2015-05-29 08:33:52    阅读次数:130
最大素因子 NYOJ 520
1 #include//最大素因子(520) 2 #define MAX 1000005 3 int a[MAX]; 4 void f() 5 { 6 int t=0,i,j; 7 for(i=2;i<MAX;i++){ 8 if(a[i]==0)...
分类:其他好文   时间:2015-05-29 08:31:41    阅读次数:146
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!