码迷,mamicode.com
首页 >  
搜索关键字:space    ( 18273个结果
LESS 的 operation 是 特性
LESS 的 operation 是 特性,其实简单的讲,就是对数值型的 value(数字、颜色、变量等)进行加减乘除四则运算。 例: 1 2 3 4 5 @init: #111111; @transition: @init*2; .switchColor { color: @transition; ...
分类:其他好文   时间:2017-06-16 12:07:26    阅读次数:131
poj 2513 欧拉回路+并查集推断是否联通+Trie树
http://poj.org/problem?id=2513 最初看到 第一感觉 map 一看250000的数据量 果断放弃 然后记得曾经看过。trie取代map。尤其当数据量特别大的时候 学到了: 1、Trie取代map的思想,能够在单词结尾的tree[i][tk] 这个i作为字符串相应的int值 ...
分类:移动开发   时间:2017-06-16 11:31:56    阅读次数:188
marquee标签详解
<marquee>标签,它是成对出现的标签,首标签<marquee>和尾标签</marquee>之间的内容就是滚动内容。<marquee>标签的属性主要有behavior、bgcolor、direction、width、height、hspace、vspace、loop、scrollamount、s ...
分类:其他好文   时间:2017-06-16 10:21:39    阅读次数:135
cfodeforces 741D Arpa’s letter-marked tree and Mehrdad’s Dokhtar-kosh paths
题目链接:Arpa’s letter-marked tree and Mehrdad’s Dokhtar-kosh paths 第一次写\(dsu\ on\ tree\),来记录一下 \(dsu\ on\ tree\)主要维护子树信息,往往可以省掉一个数据结构的启发式合并。大体思路如下: 轻重链路径 ...
分类:其他好文   时间:2017-06-16 10:19:43    阅读次数:150
ZOJ 3689 Digging(贪心+dp)
Digging Time Limit: 2 Seconds Memory Limit: 65536 KB When it comes to the Maya Civilization, we can quickly remind of a term called the end of the wor ...
分类:其他好文   时间:2017-06-16 10:12:22    阅读次数:152
Webloginc 内存溢出解决方法
Webloginc内存溢出解决方法:javax.servlet.ServletException:java.lang.OutOfMemoryError:PermGenspace解决方法:1.在base_domain域下找到startWebLogic.bat文件,然后打开编辑,2.然后加入以下的代码JAVA_OPTS=‘-Xms512m-Xmx2048m-XX:PermSize=128M-XX:MaxNewSize=256m-XX:Ma..
分类:Web程序   时间:2017-06-15 22:50:14    阅读次数:240
luogu P1217 [USACO1.5]回文质数 Prime Palindromes x
P1217 [USACO1.5]回文质数 Prime Palindromes 题目描述 因为151既是一个质数又是一个回文数(从左到右和从右到左是看一样的),所以 151 是回文质数。 写一个程序来找出范围[a,b](5 <= a < b <= 100,000,000)( 一亿)间的所有回文质数; ...
分类:其他好文   时间:2017-06-15 21:50:25    阅读次数:156
[Leetcode] Linked list cycle ii 判断链表是否有环
Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull. Follow up:Can you solve it without using extra space? 题 ...
分类:其他好文   时间:2017-06-15 21:47:53    阅读次数:220
html 标签: image也能提交form!!!
html 标签: image也能提交form!!! image也能提交form 先前常常使用“<input type="submit" value="input_submit"/>” 来提交form 今天在项目中进行开发的过程中有这么一个功能: 点击“XXX”button,进行form表单的提交,可 ...
分类:Web程序   时间:2017-06-15 19:36:12    阅读次数:155
C++模板类不同类型的转换
不同类型之间的转换如果用C语言实现一般会很麻烦,C++提供了一种叫做模版类的东西,使用模板类转换非常方便使用 代码如下: change.h 具体使用: main.cpp ...
分类:编程语言   时间:2017-06-15 18:55:19    阅读次数:152
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!