- 博客(62)
- 资源 (10)
- 收藏
- 关注
原创 算法学习笔记
文件的输入输出重定向,在main函数的入口处加入以下两条语句即可freopen("input.*","r",stdin);freopen("output.*","w",stdout); 文件的标准输入输出FILE *fin,*fout;fin=fopen("input.*","rb");fout=fopen("output.*","wb");while(fscanf
2014-11-30 23:45:53 662
原创 oracle学习笔记
从系统命令行转入sqlplus的命令行:sqlplus /nolog 连接数据库:Conn 用户名/密码@数据库名称 查看当前数据库有哪些表存在:select table_name from user_tables;Select * from user_tables; 查看当前数据库有哪些索引存在:select index_name from user_
2014-11-30 23:41:30 424
原创 mysql索引简介
刚刚整理了一下自己受伤创建索引:Create [unique] index index_name on table_name(column_list[asc desc]);Alter table table_name add [unique] index index_name(column_list[asc desc]);Alter table tab
2014-11-20 13:17:12 502
原创 持久化技术
JPA--Java Persistence API.JPA通过JDK 5.0注解或XML描述对象-关系表的映射关系,并将运行期的实体对象持久化到数据库中
2014-11-06 09:05:15 430
原创 nodejs学习笔记
1、异步式IO(非阻塞 I/O)与事件驱动当线程遇到 I/O 操作时,不会以阻塞的方式等待 I/O 操作 的完成或数据的 返回,而只是将 I/O 请求发送给操作系统,继续执行下一条语句。当操作 系 统完成 I/O 操作时,以事件的形式通知执行 I/O 操作的线程,线程会在特 定时候处理这个 事件。为了处理异步 I/O,线程必须有事件循环,不断地检 查有没有未处理的事件,依次予 以处理。
2014-10-31 20:07:38 552
原创 Ubuntu命令的学习
Ubuntu安装软件最简单办法是,当我们知道软件的名称,那么我们就直接在终端命令窗口中输入命令就可以了:比如安装Chrome浏览器sudo apt-get install google-chrome-unstable不过用此命令安装Chrome浏览器需要我们先将相关源加入到/etc/apt/sources.list中,不然会提示找不到软件包Ubuntu下载文件wget是一个
2014-10-16 18:30:57 533
转载 getContextPath、getServletPath、getRequestURI的区别
假定你的web application 名称为news,你在浏览器中输入请求路径:http://localhost:8080/news/main/list.jsp则执行下面向行代码后打印出如下结果:1、 System.out.println(request.getContextPath()); //可返回站点的根路径。也就是项目的名字打印结果:/news2、System.out
2014-10-04 13:24:19 331
原创 因子和阶乘
#include #include #include int prime[100],count=0;int is_prime(int n){ for(int i=2; i*i if(n%i==0) return 0; return 1;}int main(){ int n,p[
2014-09-06 11:42:26 623
原创 Cantor的数表
#include #include #include int main(){ int n,x=1,y=1,count=1; scanf("%d",&n); for(;;) { if(count { y++; count++;
2014-09-06 10:41:02 441
原创 6174问题
#include #include #include int num[2000],count;int getNext(int x){ int a,b,n; char s[10]; sprintf(s,"%d",x); n=strlen(s); //冒泡排序 for(int i=0; i {
2014-09-06 00:54:16 401
原创 周期串
#include #include #include #include #include #include int main(){ char word[100]; int i,j,ok; scanf("%s",word); int length = strlen(word); for(i=1; i
2014-09-05 22:48:06 434
原创 孪生素数
#include #include #include #include #include #include //判断某个数是否为素数int suShu(int n){ int i,test=1; for(i=2; i { if(n%i==0) { test=0;
2014-09-05 19:39:22 654
原创 乘法竖式(abc*de)
#include #include #include #include #include #define MAXN 20#define MAXM 60int main(){ char s[MAXN],buf[MAXM]; int a,b,x,y,z,count=0,i,ok; scanf("%s",s); for(
2014-09-05 14:28:28 1852
原创 蛇形填数
#include #include #include #include #include #define MAXN 10int a[MAXN][MAXN];int main(){ int x,y,n,count=0; scanf("%d",&n); memset(a,0,sizeof(a)); a[x=0][y
2014-09-05 11:00:43 389
原创 韩信点兵--3,5,7版本
#include #include #include #include int main(){ int a,b,c,i,mod,temp=0; scanf("%d%d%d",&a,&b,&c); for(i=10; i { if(c==i%7) { if(b==i%5)
2014-09-05 00:34:31 964
原创 水仙花数
#include #include #include #include int waterFlower(int n){ int tempFlower = 0; int a,b,c; a=n/100; b=n/10%10; c=n%10; if(n==a*a*a+b*b*b+c*c*c) {
2014-09-04 17:23:36 609
原创 src的小记录
../是在相对路径时使用,它代表当前目录的父目录。假如说现在有这么一个目录:html/web/images 那么../images 就代表是web这一层
2014-09-03 01:00:39 481
原创 Ajax学习那些事
1、Ajax是什么,web出现的革新?1.1 Ajax未出现之前,Html显示的都是在服务器端预处理好的数据;如果你只要刷新页面的局部信息,但实际上你要刷新的是整个页面,全局刷新,同步处理数据,亦即重新加载整个页面。----“工作--等待”模式1.2 Ajax出现之后,保持用户体验的页面不变,只是刷新局部,实现异步处理数据。 2、Ajax核心组成Ajax=XmlHttpRe
2014-08-31 11:34:27 495
原创 SSH之三大框架的整合
以下偷学了一些SSH(spring+struts+hibernate)的整合,struts还未作总结,希望可以给大家一些帮助,顺便自己在此做记录。1、引入spring开发包2、编写applicationContext.xml文件3、测试看看spring是否可以工作4、引入hibernate开发包5、spring接管hibernate的核心配置文件(hibernate.cfg.x
2014-08-18 02:31:16 636
原创 使用hibernate进行数据校验那些事
javax.validation.UnexpectedTypeException: No validator could be found for type: java.lang.Integer@NotEmpty(message="接收人类型不能够为空") public Integer getRecievetype() { return this.recievety
2014-07-26 10:05:01 569
原创 hibernate的session语句的那些事情(里面有一个很值得学习的思想)
首先1、get() 与 load() 的爱恨纠葛get()----
2014-07-15 14:07:43 639
原创 hibernate学习之SessionFactory的那些事
SessionFactoryopenSession();getCurrentSession();局部事务()
2014-07-15 12:42:15 635
原创 JAVA WEB里头有关url-pattern的爱恨情仇(搜集了部分人的介绍)
1、以”/’开头和以”/*”结尾的是用来做路径映射的2、以前缀”*.”开头的是用来做扩展映射的
2014-07-13 15:24:50 684
原创 java项目开发过程中可能会遇到的错误大搜集
java.lang.IllegalStateException: BeanFactory not initialized or already closed - call 'refresh' before accessing beans via the ApplicationContext BeanFactory没有实例化或者已经关闭,原因很简单:ApplicationContext ctx
2014-07-13 15:18:01 4128
班级通讯录--WebApp
2014-06-26
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人