码迷,mamicode.com
首页 >  
搜索关键字:javascript sort    ( 74682个结果
linux分析工具之top命令详解
Linux系统可以通过top命令查看系统的CPU、内存、运行时间、交换分区、执行的线程等信息。通过top命令可以有效的发现系统的缺陷出在哪里。是内存不够、CPU处理能力不够、IO读写过高。 回到顶部 一、top选项 使用语法:top -hv | -abcHimMsS -d delay -n iter ...
分类:系统相关   时间:2021-06-02 14:25:14    阅读次数:0
排序 - 冒泡排序(C语言)
时间复杂度:O(N2) 空间复杂度:O(1) 稳定性:稳定 // 冒泡排序 void bubble_sort(int list[], int listSize) { int i, j, flag; int temp; for (i = listSize - 1; i >= 1; --i) { fla ...
分类:编程语言   时间:2021-06-02 13:42:30    阅读次数:0
实验五
task 1 #include <stdio.h> const int N=3;int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", ...
分类:其他好文   时间:2021-06-02 13:36:45    阅读次数:0
js (javascript) 部分基础
js (javascript) 运行在浏览器中的脚本语言 通过浏览器执行js代码 js组成 ecma scrpit 构成js核心语法 bom 浏览器对象模型 操作浏览器中的对象 dom 文档对象板 操作网页中的元素 目的 和用户的交互 验证表单的合法性 特点 交互性 安全性 跨平台 引入方式 和cs ...
分类:编程语言   时间:2021-06-02 13:02:57    阅读次数:0
Node.js环境配置,Npm切换
前期准备 1、Node.js简介简单的说 Node.js 就是运行在服务端的 JavaScript。Node.js 是一个基于 Chrome V8 引擎的 JavaScript 运行环境。Node.js 使用了一个事件驱动、非阻塞式 I/O 的模型,使其轻量又高效。Node.js 的包管理器 npm ...
分类:Web程序   时间:2021-06-02 12:41:44    阅读次数:0
实验五
任务一#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a ...
分类:其他好文   时间:2021-06-02 12:17:51    阅读次数:0
实验五
#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] ...
分类:其他好文   时间:2021-06-02 12:09:15    阅读次数:0
ES6之Promise对象
参考链接: https://www.runoob.com/w3cnote/javascript-promise-object.html 一、介绍 ECMAscript 6 原生提供了 Promise 对象。Promise 对象代表了未来将要发生的事件,用来传递异步操作的消息。Promise 对象有以 ...
分类:其他好文   时间:2021-06-02 12:06:47    阅读次数:0
Docker常用命令
1、docker安装wget -P /etc/yum.repos.d/ https://download.docker.com/linux/centos/docker-ce.repoyum list docker-ce --showduplicates | sort -r #查看可以安装的版本yum ...
分类:其他好文   时间:2021-06-02 11:38:46    阅读次数:0
Linux Shell经典面试题
查空行 awk '/^$/{print NR}' demo1.txt 求某一列的和 awk '{sum+=$2} END {print "求和:"sum}' demo2.txt 数字排序 sort -n -t ' ' -k 2 demo3.txt sort -t ' ' -k 2nr demo3.t ...
分类:系统相关   时间:2021-06-02 11:35:11    阅读次数:0
74682条   上一页 1 ... 13 14 15 16 17 ... 7469 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!