上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 22 下一页
摘要: 找任意第k个小的元素 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <ctime> 4 #include <iostream> 5 using namespace std; 6 7 template <class Type> 8 void 阅读全文
posted @ 2018-05-11 20:51 SaraMorning 阅读(1972) 评论(1) 推荐(0) 编辑
摘要: 选择一块 : Ctrl+-选择一行 : Shift+F6到下一个函数 : 小键盘 +上一个函数 : 小键盘 -高亮当前单词 : Shift+F8回退、前进 alt + , alt + .最后一个窗口 : Ctrl+Tab, Ctrl+Shift+Tab替换 : Ctrl+H 同步文件 : Alt+S 阅读全文
posted @ 2018-05-02 17:30 SaraMorning 阅读(430) 评论(0) 推荐(0) 编辑
摘要: cd(change directory)cd xxx:意思是 到xxx目录;cd .. : 意思是到上一级目录;cd - :意思是返回到上次的目录,类似windows返回 ;cd /:意思是回到根目录。cd ../..:意思是f返回到上上级目录。 mv 功能说明:移动或更名现有的文件或目录。语 法: 阅读全文
posted @ 2018-04-28 10:37 SaraMorning 阅读(266) 评论(0) 推荐(0) 编辑
摘要: IP地址分类:A类IP段 0.0.0.0 ~ 127.255.255.255(0nnnnnnn.hhhhhhhh.hhhhhhhh.hhhhhhhh)(保留给ZF或大型企业)B类IP段 128.0.0.0 ~ 191.255.255.255(10nnnnnn.nnnnnnnn.hhhhhhhh.hh 阅读全文
posted @ 2018-04-28 10:35 SaraMorning 阅读(559) 评论(0) 推荐(0) 编辑
摘要: 冒泡排序C语言版:在每轮排序中检查时候有元素位置交换,如果无交换,说明数组元素已经有序,无需继续排序 1 #include <stdio.h> 2 #include <stdlib.h> 3 void bubble_sort(int array[], int n) 4 { 5 for(int i = 阅读全文
posted @ 2018-04-27 21:22 SaraMorning 阅读(215) 评论(0) 推荐(0) 编辑
摘要: @echo off echo 正在清除系统垃圾文件,请稍等...... del /f /s /q %systemdrive%\*.tmp del /f /s /q %systemdrive%\*._mp del /f /s /q %systemdrive%\*.log del /f /s /q %s 阅读全文
posted @ 2018-01-23 22:00 SaraMorning 阅读(385) 评论(0) 推荐(0) 编辑
摘要: 集线器、交换机、路由器、中继器及网关、网桥之间的区别 http://blog.csdn.net/lx85416281/article/details/53234154 点到点通信和端到端通信 https://www.zhihu.com/question/49245486 http://bestkua 阅读全文
posted @ 2017-11-20 19:44 SaraMorning 阅读(281) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/happy_cheng/article/details/44069533 阅读全文
posted @ 2017-03-21 09:59 SaraMorning 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 第二章 C语言知识 排序方法 头文件:#include<stdlib.h> qsort(a,1000,sizeof(int),comp); 其中comp函数应写为: int comp(const void*a,const void*b) { return *(int*)a-*(int*)b; } 上 阅读全文
posted @ 2017-03-17 14:01 SaraMorning 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 给定一个任意长度的java数组,求数组内的数能组合出来的最大整数比如说{9,98,123,32} 最大就是 99832123 阅读全文
posted @ 2016-10-17 21:31 SaraMorning 阅读(1524) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 22 下一页