码迷,mamicode.com
首页 >  
搜索关键字:less    ( 4949个结果
Sublime安装插件的方法
一:打开:工具--命令面板二:输入:package,,选择下拉列表里提示的install package三:输入需要安装的插件的名称,如:angularJS Less sass 回车即可安装,四:安装成功后最好重启sublime,然后进行测试。
分类:其他好文   时间:2015-03-08 12:53:34    阅读次数:114
[LeetCode] Partition List 划分链表
Given a linked list and a valuex, partition it such that all nodes less thanxcome before nodes greater than or equal tox.You should preserve the origi...
分类:其他好文   时间:2015-03-08 09:17:20    阅读次数:169
排序第一天,回忆关键字
选择,插入,希尔,归并,快排(包括三向快排),堆排序。 选择: 实现原理:内外循环,选择最小,比较。 关键点:for(k =i+1 ,k 0 && less(a[j],a[j-1],j--) 希尔: 实现原理:插入的改进,使用递增序列0,1,4,13………………,分组插入 ...
分类:编程语言   时间:2015-03-08 06:41:30    阅读次数:182
Linux命令-帮助命令:man
man ls 查看ls命令的帮助信息(输出结果和less命令一样,需要空格,回车,,上箭头,下箭头,PgUp,PgDn,q等方式浏览)注意:由于这个文件信息量比较大,需要查找某一个字符,输入/,输入l,查找所有l字符信息,然后按n键进行翻页。回车后按n翻页查看选项可以输入/-l,查看-l的选项内容....
分类:系统相关   时间:2015-03-07 22:38:35    阅读次数:264
How to write perfect C code
Several days ago, I was involved in an argument about choice of C or C++. What I ignored was "language is less important than coder". a bad C# write.....
分类:其他好文   时间:2015-03-06 16:12:30    阅读次数:162
【桶排序】求无序数组中最大的“Gap"
题目:leetcode Given an unsorted array, find the maximum difference between the successive elements in its sorted form. Try to solve it in linear time/space. Return 0 if the array contains less than 2...
分类:编程语言   时间:2015-03-06 11:23:28    阅读次数:248
%s 与 %0s在 verilog中的区别
what is different between %s and %0s?(%s和%零s)%s prints the string as it is with spaces at the begining if string contentsare less than string variable...
分类:其他好文   时间:2015-03-05 19:02:18    阅读次数:855
1043. Is It a Binary Search Tree
A Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties: The left subtree of a node contains only nodes with keys less than the node's key. The righ...
分类:其他好文   时间:2015-03-05 17:08:50    阅读次数:178
Gulp 自动化的项目构建工具
在很多场合都会听到前端工和 node 程师推荐 Grunt 来实现项目的自动化,自动化可以自动完成 javascript/coffee/sass/less 等文件的的测试、检查、合并、压缩、格式化、部署文件生成,并监听文件在改动后重复指定的这些步骤。 得益于 Grunt 基于任务的设计模式,这...
分类:其他好文   时间:2015-03-04 16:02:44    阅读次数:190
Bootstarp学习(二十三)模态弹出框(Modals)
这一小节我们先来讲解一个“模态弹出框”,插件的源文件:modal.js。 右侧代码编辑器(30行)就是单独引入 bootstrap 中发布出的“modal.js”文件。 样式代码:   ? LESS版本:modals.less   ? Sass版本:_modals.scss   ? 编译后的Bootstrap:对应bootstrap.css文件第5375行~第5496...
分类:其他好文   时间:2015-03-04 11:06:32    阅读次数:309
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!