码迷,mamicode.com
首页 >  
搜索关键字:ges    ( 16745个结果
cscope usage
1) Reference: Linux 平台下阅读源码的工具链 程序员的利器 – cscope 2) cscope help: :help cscope :help cscope-suggestions :cs help 3) Generate index files: find fullpath/ ...
分类:其他好文   时间:2016-10-24 14:02:53    阅读次数:231
css之——如何让文字强制换行
我们在编写html时, 有时候,常常需要在移动端用到一些table的属性,来呈现一些数据。如果说我们的数据内不含连续的数字或字母时,显示是不会出错的。 例: 可是如果我们要呈现的数据为数字或长字母信息时,常常会出现这样的情况。 例: 文字并没有像我们预期那样换行,设置的宽度无效了。 这是什么原因呢? ...
分类:Web程序   时间:2016-10-24 13:49:00    阅读次数:206
secureCRT背景颜色设置
1. Options->Global Options->Advanced select 'Monochrome' click 'Edit' button normal: Background [black] Foreground [white] Bold: Backgrond [black] For ...
分类:其他好文   时间:2016-10-24 13:40:47    阅读次数:304
LeetCode 389 Find the Difference
Problem: Given two strings s and t which consist of only lowercase letters. String t is generated by random shuffling string s and then add one more l ...
分类:其他好文   时间:2016-10-24 13:21:29    阅读次数:161
160809207刘兆轩
...
分类:其他好文   时间:2016-10-24 13:17:12    阅读次数:178
Repeater展示表格
可以不用table展示数据 向表中添加表的路径 ...
分类:其他好文   时间:2016-10-24 09:48:38    阅读次数:152
垃圾陷阱
#include<cstdio>#include<algorithm>using namespace std;struct item{ int t,h,f; bool operator < (const item& x) const { return t<x.t; }};int D,G,rest_t ...
分类:其他好文   时间:2016-10-24 09:41:05    阅读次数:196
STL源码剖析(vector)
在SGI STL中,vector使用的是连续的内存空间,迭代器使用普通指针来实现。 因为使用的是连续的内存空间,在vector容量不足的时候会直接分配一块新的内存,把原来的元素copy进去,回收原来的内存空间。 因此在vector扩容的时候,原来的所有迭代器都会失效。 vector的实现基本都是围绕 ...
分类:其他好文   时间:2016-10-24 09:40:57    阅读次数:238
Cesium原理篇:6 Render模块(3: Shader)
在介绍Renderer的第一篇,我就提到WebGL1.0对应的是OpenGL ES2.0,也就是可编程渲染管线。之所以单独强调这一点,算是为本篇埋下一个伏笔。通过前两篇,我们介绍了VBO和Texture两个比较核心的WebGL概念。假设生产一辆汽车,VBO就相当于这个车的骨架,纹理相当这个车漆,但有 ...
分类:其他好文   时间:2016-10-24 09:37:49    阅读次数:443
LeetCode之344. Reverse String
------------------------------- Java也可以实现一行代码反转字符串哦 AC代码如下: public class Solution { public String reverseString(String s) { return new StringBuffer(s)... ...
分类:其他好文   时间:2016-10-24 07:37:41    阅读次数:166
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!