DescriptionProblem DThe Book-shelver’s ProblemInput: standard inputOutput: standard outputTime Limit: 5 secondsMemory Limit: 32 MBYou are given a coll...
分类:
其他好文 时间:
2014-10-07 20:02:53
阅读次数:
214
一、基础
1、EL(Expression Language):为了使jsp写起来更加简单,提供了在Jsp中简化表达式的方法
2、JSTL:(JSP Standard Tag Library)jstl标准标签库,由apache实现
3、JSTL一般要配合EL表达式一起使用,因为在JSTL在赋值时会大量的使用EL,可以说EL是JSTL的一种辅助。
4、在使用时:JSTL需要引入:jstl.ja...
分类:
编程语言 时间:
2014-10-07 15:27:33
阅读次数:
316
Problem A
Make Palindrome
Input: standard input
Output: standard output
Time Limit: 8 seconds
By definition palindrome is a string which is not changed when reversed. "MADAM" is a nice example...
分类:
其他好文 时间:
2014-10-07 12:44:13
阅读次数:
176
一、求均值% 求一副灰度图像的均值close all;clear;clc;i=imread('d:/lena.jpg'); %载入真彩色图像i=rgb2gray(i); %转换为灰度图i=double(i); %将uint8型转换为double型,否则不能计算统计量% avg1=mean(i,1)....
分类:
其他好文 时间:
2014-10-06 16:59:40
阅读次数:
502
看了前面一节:linux shell数据重定向(输入重定向与输出重定向)详细分析 估计还有一些朋友是头晕晕的,好复杂的重定向了。这次我们看下管道命令了。shell管道,可以说用法就简单多了。管道命令操作符是:”|”,它仅能处理经由前面一个指令传出的正确输出信息,也就是 standard output...
分类:
其他好文 时间:
2014-10-05 23:38:09
阅读次数:
433
The Bottom of a GraphTime Limit:3000MSMemory Limit:65536KTotal Submissions:8904Accepted:3689DescriptionWe will use the following (standard) definition...
分类:
其他好文 时间:
2014-10-05 20:53:19
阅读次数:
256
原创地址:http://www.cnblogs.com/jfzhu/p/4006744.html转载请注明出处计算机要先设置固定ip,加入域,然后安装账号需要有本地管理员的权限。演示环境的操作系统为64位 Windows Server 2012 Standard,SQL Server为SQL Ser...
分类:
数据库 时间:
2014-10-05 12:10:58
阅读次数:
314
简单多边形是指各边不相交的多边形。首先计算出所有顶点中心位置。然后求每个顶点与中心的极角。再对极角进行排序。连接排序后的点就行了。结果如下:matlab代码如下:clear all;close all;clc;n=30;p=rand(n,2);cen=mean(p);ang=atan2(p(:,1)...
分类:
其他好文 时间:
2014-10-04 23:40:17
阅读次数:
294
> x=seq(-6,6, by=0.1)
> y = dnorm(x, mean=0, sd=1)
> plot(x,y)
分类:
其他好文 时间:
2014-10-04 22:16:01
阅读次数:
272
Data Types in the KernelUse of Standard C Types/* * datasize.c -- print the size of common data items * This runs with any Linux kernel (not any Unix,...
分类:
其他好文 时间:
2014-10-04 21:17:27
阅读次数:
248