首页 > 全部
extjs 数字校园-云资源平台 2014.2.4-班级座位表
学生能查看自己班的座位表 老师可以查看各班座位表 班主任能新建和编辑自己班座位表 授权用户可以管理各班座位表 拖动姓名到指定座位即可安排座位 可以自定义座位表的行列数 demo: http://demo.linbsoft.com/zykdsk     guest  8888...
分类:Web开发   时间:2014-02-05 13:39:42    收藏:0  评论:0  赞:0  阅读:373
oracle rman 备份日志单独备份和交叉校验
手动备份归档日志 1、database01 [oraprod@db01 scripts ]$ pwd /usr/tivoli/scripts [oraprod@db01 scripts ]$ ls 1.txt                      nohup.out                  oraicr0.sh                 scheoraicr0.sh ...
分类:数据库技术   时间:2014-02-05 13:11:22    收藏:0  评论:0  赞:0  阅读:543
linux 内存使用情况详细信息
在Linux下查看内存我们一般用free命令:   [root@scs-2 tmp]# free   total used free shared buffers cached   Mem: 3266180 3250004 16176 0 110652 2668236   -/+ buffers/cache: 471116 2795064   Swap: 2048276 80160 19...
分类:其他   时间:2014-02-05 13:19:42    收藏:0  评论:0  赞:0  阅读:406
教你如何快速下载旧版本的Firefox浏览器
教你如何快速下载旧版本的Firefox浏览器...
分类:其他   时间:2014-02-05 13:50:32    收藏:0  评论:0  赞:0  阅读:324
UVa 10474 大理石在哪?
/* * 解题思路: * 简单的排序后查找 */ #include #include #include #define A 10010 int a[ A ]; int m,n; int cmp( const void *a , const void *b ) { return *( int *)a - *(int *)b; } int search( int x ) { ...
分类:其他   时间:2014-02-05 13:25:32    收藏:0  评论:0  赞:0  阅读:367
VIM学习 之 快捷键(一)
由于使用VIM很久以来,一直没有觉得VIM是多么的方便,是多么的快捷 我仔细想了一下,很有可能是因为我一直依赖于VIM的编辑模式 这样的话与使用别的简单的编辑器就没什么两样了 效率上的优势也就没能体现出来了...
分类:其他   时间:2014-02-05 13:10:32    收藏:0  评论:0  赞:0  阅读:296
蓝桥杯 【初赛题目】 高斯日记
题目描述:     大数学家高斯有个好习惯:无论如何都要记日记。     他的日记有个与众不同的地方,他从不注明年月日,而是用一个整数代替,比如:4210     后来人们知道,那个整数就是日期,它表示那一天是高斯出生后的第几天。这或许也是个好习惯,它时时刻刻提醒着主人:日子又过去一天,还有多少时光可以用于浪费呢?     高斯出生于:1777年4月30日。...
分类:其他   时间:2014-02-05 13:42:12    收藏:0  评论:0  赞:0  阅读:521
设计模式之策略模式
何为策略,就是可以实现目标的方案集合。而完成一项任务有不同的方式,每一种方式称为一个策略。策略模式就是定义一系列算法,将每一个算法封装起来,并让他们可以相互替换。很简单的一个例子:年底移动公司推出很多的活动,比如说:存话费赠食用油,交话费赠话费,买手机赠话费 等等。推出这些个活动目的就只有一个,刺激消费为公司创造利润,而我们可以将这些个活动当做一个一个的策略,如下: abstract clas...
分类:其他   时间:2014-02-05 13:38:02    收藏:0  评论:0  赞:0  阅读:403
poj 3264 线段树 寻找最大最小值 SEGMENT TREE
Description For the daily milking, Farmer John's N cows (1 ≤ N ≤ 50,000) always line up in the same order. One day Farmer John decides to organize a game of Ultimate Frisbee with some of the cows. ...
分类:其他   时间:2014-02-05 13:24:42    收藏:0  评论:0  赞:0  阅读:475
UVa 152 一堆树
/* * 解题思路: * 给出一棵树的三位坐标,挨个求每棵树离它最近那棵树距离下取整的值为0~9哪个距离值,就在那个距离值上+1 *       最后记得换行 */ #include #include #include #include #define A 10000 #define INF 0x5fffff int p; int x[ A ],y[ A ],z[ A ]; i...
分类:其他   时间:2014-02-05 13:09:42    收藏:0  评论:0  赞:0  阅读:369
一个带百叶窗焦点图片的jQuery插件源码发布
实现了百叶窗、左右、上下的焦点图片切换,兼容IE 6-10 ,firefox,chorme. 源码下载地址:http://download.csdn.net/detail/aofengdaxia/6898081...
分类:Web开发   时间:2014-02-05 13:41:22    收藏:0  评论:0  赞:0  阅读:388
UVa 299 列车交换
/* * 解题思路: * Bubble sort 的一道水题 */ #include int main( ) { int t,n; int i,j; int train[ 60 ]; int sum,tmp; scanf("%d",&t); while( t-- ) { scanf("%d",&n); ...
分类:其他   时间:2014-02-05 13:35:32    收藏:0  评论:0  赞:0  阅读:377
leetcode JAVA Binary Tree Level Order Traversal 难度系数3 3.36
Question: Given a binary tree, return the level order traversal of its nodes' values. (ie, from left to right, level by level). For example: Given binary tree {3,9,20,#,#,15,7}, 3 /...
分类:其他   时间:2014-02-05 13:48:02    收藏:0  评论:0  赞:0  阅读:385
leetcode JAVA Construct Binary Tree from Preorder and Inorder Traversal 难度系数3 3.37
Question: Given preorder and inorder traversal of a tree, construct the binary tree. Note: You may assume that duplicates do not exist in the tree. /** * Definition for binary tree * publi...
分类:其他   时间:2014-02-05 13:43:02    收藏:0  评论:0  赞:0  阅读:343
leetcode Construct Binary Tree from Inorder and Postorder Traversal 难度系数3 3.38
Question: Given inorder and postorder traversal of a tree, construct the binary tree. Note: You may assume that duplicates do not exist in the tree. /** * Definition for binary tree * publ...
分类:其他   时间:2014-02-05 13:31:22    收藏:0  评论:0  赞:0  阅读:391
leetcode JAVA Binary Tree Level Order Traversal II 难度系数3 3.39
Question: Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by level from leaf to root). For example: Given binary tree {3,9...
分类:其他   时间:2014-02-05 13:08:52    收藏:0  评论:0  赞:0  阅读:337
CRC32算法C#中的实现
代码如下: 1 using System; 2 using System.Collections.Generic; 3 using System.Text; 4 using System.IO; 5 6 namespace GetCRC32 7 { 8 class CRC32Cls 9 {10 pr...
分类:其他   时间:2014-02-05 13:54:42    收藏:0  评论:0  赞:0  阅读:530
hdu 2188(巴什博弈入门 )
/*如果n=m+1,那么由于一次最多只能取m个,所以,无论先取者拿走多少个,后取者都能够一次拿走剩余的物品,后者取胜。因此我们发现了如何取胜的法则:如果n=(m+1)r+s,(r为任意自然数,s≤m),那么先取者要拿走s个物品,如果后取者拿走k(≤m)个,那么先取者再拿走m+1-k个,结果剩下(m+...
分类:其他   时间:2014-02-05 13:45:32    收藏:0  评论:0  赞:0  阅读:408
android拾遗——Android Intent详解
一、 Intent 作用Intent 是一个将要执行的动作的抽象的描述,一般来说是作为参数来使用,由Intent来协助完成android各个组件之间的通讯。比如说调用startActivity()来启动一个activity,或者由broadcaseIntent()来传递给所有感兴趣的Broadcas...
分类:移动平台   时间:2014-02-05 13:30:32    收藏:0  评论:0  赞:0  阅读:385
谈谈几个月以来开发android蓝牙4.0 BLE低功耗应用的感受
谈谈几个月以来开发android蓝牙4.0 BLE低功耗应用的感受,注明下时间:2012-10-17写的博客,后期更新的也注明了时间的。开始对蓝牙4.0的各种特性和各种应用场景的美好描绘充满了向往,但愿望很美好,现实很骨干。在这几个月中遭遇了很多挫折和痛苦的折磨,相当的难熬,android2.3的没...
分类:移动平台   时间:2014-02-05 13:23:52    收藏:0  评论:0  赞:0  阅读:668
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!