码迷,mamicode.com
首页 >  
搜索关键字:sort linux    ( 167095个结果
马哥学习笔记一——ssh服务
telnet: 远程登录协议, 23/tcp C/S S:telnet服务器 C:telnet客户端 ssh:Secure SHell, 应用层协议,22/tcp 通信过程及认证过程是加密的, 主机认证 用户认证过程加密 ...
分类:其他好文   时间:2014-05-01 10:14:05    阅读次数:324
安装Jenkins
本文演示如何在Windows上和Linux上安装Jenkins。 1. Windows上Jenkins安装 参考网页:https://wiki.jenkins-ci.org/display/JENKINS/Installing+Jenkins+as+a+Windows+service 在Window...
分类:其他好文   时间:2014-05-01 09:52:49    阅读次数:455
ubuntu修改分辨率---要人命
ubuntu分辨率真是坑爹,不知什么原因,ubuntu分辨率一下子变了,通过,显示->分辨率,都改不过来。。。 无奈,有重装系统的冲动,从网上找了很多方法,都不管用,有一次,在这里 sudo gedit /etc/X11/xorg.conf 更改还黑屏了。。。 电脑上还有很...
分类:其他好文   时间:2014-05-01 09:50:47    阅读次数:410
Yii,Linux与windows环境下面的不同
其实与其说是不同倒是可以说是需要注意的地方1. Linux下面,Model Component 等...在调用的时候要注意大小写..下面一段就会报错 1 class LinkController extends Controller 2 { 3 4 public function acti...
分类:Windows程序   时间:2014-05-01 09:44:53    阅读次数:593
xunsearch增量索引改进版
最近测试了xunserach全文索引程序。xunsearch只有LINUX版,所以想用windows服务器请使用其它全文索引程序。 xunsearch本身不像coreseek那样自带增量索引的功能,所以很多从coreseek转过来的朋友很是不习惯。不过xunsearch拥有很 多的API和案例,使....
分类:其他好文   时间:2014-05-01 09:39:48    阅读次数:449
c++ ACM常用函数
1 保留小数点后两位#include cout const char * spilt="/";char *p;p=strtok(str,spilt);while(p!=NULL){ //cout #includesort(Rs.begin(),Rs.end());sort(Rs.begin(),Rs...
分类:编程语言   时间:2014-05-01 05:05:45    阅读次数:409
Linux内核架构读书笔记 - 2.5.4 核心调度器
linux核心调度器的实现机制
分类:系统相关   时间:2014-05-01 03:53:50    阅读次数:641
快速排序
package algorithm.sort;public class QuickSort { public static void main(String[] args) { int[] a = new int[] {5, 3, 7, 2, 1, 4, 9, 8, 6, 1}; sort(a); ...
分类:其他好文   时间:2014-05-01 03:33:20    阅读次数:330
计数排序
package algorithm.sort;public class CountingSort { public static void main(String[] args) { int[] a = new int[] {5, 3, 7, 2, 1, 4, 9, 8, 6, 1}; int[] ...
分类:其他好文   时间:2014-05-01 03:25:05    阅读次数:252
堆排序
package algorithm.sort;public class HeapSort { public static void main(String[] args) { int[] a = new int[] {5, 3, 7, 2, 1, 4, 9, 8, 6, 1}; sort(a); p...
分类:其他好文   时间:2014-05-01 03:24:04    阅读次数:332
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!