首页 > 2017年07月24日 > 全部分享
利用display属性写出表格的布局样式
demo地址:http://codepen.io/tianzi77/pen/gpBzjy 元素结构: <h1>display构造的table小样例,IE8及下面浏览器不支持本演示样例</h1> <div class="table"> <h2 class="table-caption">大神榜:</h ...
分类:其他   时间:2017-07-24 12:31:38    收藏:0  评论:0  赞:0  阅读:273
UVa 1599 理想路径(反向BFS 求最短路径 )
题意: 给定一个有重边有自环的无向图,n个点(2 <= n <= 100000), m条边(1 <= m <= 200000), 每条边有一个权值, 求从第一个点到n的最少步数, 如果最少步数相同有多条路径, 那么输出权值字典序最小的一条。 分析: 用BFS解决最短路问题, 可以先从终点BFS, 求 ...
分类:其他   时间:2017-07-24 12:31:03    收藏:0  评论:0  赞:0  阅读:285
leetcode 21 -- Merge Two Sorted Lists
Merge Two Sorted Lists 题目: Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of th ...
分类:其他   时间:2017-07-24 12:30:38    收藏:0  评论:0  赞:0  阅读:191
查看当前连接的实例名
1 select name from v$database; 2 select instance_name from v$instance; 3 show parameter instance; ...
分类:其他   时间:2017-07-24 12:30:27    收藏:0  评论:0  赞:0  阅读:173
MySQL配置文件mysql.ini参数详解、MySQL性能优化
my.ini(Linux系统下是my.cnf),当mysql服务器启动时它会读取这个文件,设置相关的运行环境参数。 my.ini分为两块:Client Section和Server Section。 Client Section用来配置MySQL客户端参数。 要查看配置参数可以用下面的命令: 1、C ...
分类:数据库技术   时间:2017-07-24 12:30:13    收藏:0  评论:0  赞:0  阅读:204
What does “=>” mean in import in scala?(转自StackOverflow问答)
As others have mentioned, it's an import rename. There is however one further feature that proves astoundingly-useful on occasion that I would like to ...
分类:其他   时间:2017-07-24 12:30:00    收藏:0  评论:0  赞:0  阅读:212
HDU 1025 Constructing Roads In JGShining's Kingdom
Constructing Roads In JGShining's Kingdom Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 25878 A ...
分类:其他   时间:2017-07-24 12:29:47    收藏:0  评论:0  赞:0  阅读:197
Python__名称空间与作用域
一:函数嵌套,在调用一个函数的过程中,又调用了其他函数 ...
分类:编程语言   时间:2017-07-24 12:29:36    收藏:0  评论:0  赞:0  阅读:176
移动端笔记——jQuery touch事件
{ var userAgentInfo = navigator.userAgent; var Agents = new Array("Android", "iPhone", "SymbianOS", "Windows Phone", "iPad", "iPod"); var flag = true; ...
分类:移动平台   时间:2017-07-24 12:29:24    收藏:0  评论:0  赞:0  阅读:257
python 形参
def fun(x="dx",y="dy"): print "fun " print x print yfun()fun("aa","bb")fun(x="ha",y="la")ct = dict(x="haha",y="lala")fun(**ct) fun dxdyfun aabbfun hal ...
分类:编程语言   时间:2017-07-24 12:29:08    收藏:0  评论:0  赞:0  阅读:194
POJ 2128:Highways
Highways Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 2730 Accepted: 1008 Special Judge Description In a distant country Lineland there ...
分类:其他   时间:2017-07-24 12:28:41    收藏:0  评论:0  赞:0  阅读:216
若干排序算法简单汇总(一)
转载请注明出处 http://blog.csdn.net/pony_maggie/article/details/35819279 作者:小马 从题目看,首先不是所有是若干。排序算法非常多。我个人的能力也有限。不可能都讲到。另外,是简单汇总,是希望能用最简单的代码,最简短的语言说明问题,不搞太多理论 ...
分类:编程语言   时间:2017-07-24 12:28:29    收藏:0  评论:0  赞:0  阅读:227
jQuery
jQuery jQuery设计的宗旨是“write Less,Do More”,即倡导写更少的代码,做更多的事情。 $(function (){...}) 相当于定义一个函数,然后直接运行它。 ...
分类:Web开发   时间:2017-07-24 12:27:40    收藏:0  评论:0  赞:0  阅读:245
libcassandra开发示例
一、前言 libcassandra是Cassandra官方推出的C/C++ API库。与thrift接口(另一个API库)相比,其接口更丰富,对类型匹配更细致。 通过实践,私下也觉得libcassandra比thrift接口更好用。当然这只是个人观点。 有关libcassandra的特点、安装等,在 ...
分类:其他   时间:2017-07-24 12:27:12    收藏:0  评论:0  赞:0  阅读:665
最长上升子序列(模板)
最长上升子序列(O^n^2)算法 (Onlogn)算法 模板题 http://poj.org/problem?id=2533 ...
分类:其他   时间:2017-07-24 12:26:41    收藏:0  评论:0  赞:0  阅读:229
写一个dup2功能同样的函数,不能调用 fcntl 函数,而且要有出错处理
实现的时候用到系统原来的dup函数 // mydup2.c // 2015/08/17 Lucifer Zhang version1.0 // write my own dup2 function // use dup() function when inplementation #include ...
分类:其他   时间:2017-07-24 12:26:20    收藏:0  评论:0  赞:0  阅读:309
idea的环境变量设置(Enviroment variables)
其实在idea中叫Enviroment variables是不合适的,这个是eclipse的叫法,对应在idea中叫做Path variables. 因为这个名字的原因,每次要设置spring.profiles.active都要在idea中找很久,所以干脆截图出来写个随笔,下次记不住了,翻开看下。 ...
分类:其他   时间:2017-07-24 12:26:10    收藏:0  评论:0  赞:0  阅读:3416
oracle中与mysql中的命令 show databases, show tables, desc table类似的命令集
1 怎样执行一个sql脚本文件,这个脚本文件写了一系列的sql语句集,比如sql.sql 放在D:\MyEclipse 8.6\Workspaces\OASystem\WebRoot\sql.sql下 》cd D:\MyEclipse 8.6\Workspaces\OASystem\WebRoot\ ...
分类:数据库技术   时间:2017-07-24 12:25:59    收藏:0  评论:0  赞:0  阅读:277
jquery的一点点认识
概述 JQuery是继prototype之后又一个优秀的Javascript库。它是轻量级的js库 。它兼容CSS3,还兼容各种浏览器(IE 6.0+, FF 1.5+, Safari 2.0+, Opera 9.0+)。jQuery2.0及兴许版本号将不再支持IE6/7/8浏览器。jQuery使用 ...
分类:Web开发   时间:2017-07-24 12:25:46    收藏:0  评论:0  赞:0  阅读:263
sqoop 补充
1、用 sqoop 将MySQL中的数据导入hbase中 sqoop import \--connect jdbc:mysql://***.***.*.***:3306/mysql \--hbase-table Nbigdata \--column-family gps \--hbase-row-k ...
分类:其他   时间:2017-07-24 12:25:16    收藏:0  评论:0  赞:0  阅读:297
1443条   上一页 1 ... 50 51 52 53 54 ... 73 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!