码迷,mamicode.com
首页 >  
搜索关键字:linux sort 排序    ( 207253个结果
Java 线程实现原理
Linux 操作系统中创建线程的方式 int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine) (void *), void *arg); 参数名 参数定义 参数解释 pthrea ...
分类:编程语言   时间:2021-04-08 13:36:39    阅读次数:0
linux ssh 免密登录到另外一台虚机
现在有两台 虚机 harbor-1 172.18.94.169 harbor-2 172.18.94.134 现在想从 harbor-1 免密登录到 harbor-2 1. 登录 harbor-1 这台机器 2. 查看 ~/.ssh 路径下是否有密钥对 如果有进行步骤4,如果没有进行步骤3生成密钥对 ...
分类:系统相关   时间:2021-04-08 13:31:01    阅读次数:0
【python】Leetcode每日一题-搜索排序数组2
【python】Leetcode每日一题-搜索排序数组2 【题目描述】 已知存在一个按非降序排列的整数数组 nums ,数组中的值不必互不相同。 在传递给函数之前,nums 在预先未知的某个下标 k(0 <= k < nums.length)上进行了 旋转 ,使数组变为 [nums[k], nums ...
分类:编程语言   时间:2021-04-08 13:23:21    阅读次数:0
结构体内重载
注意是 d < x.d struct Node { int d, e; bool operator < (const Node x) const { return d < x.d; //从小到大排序 } }; ...
分类:其他好文   时间:2021-04-08 13:16:49    阅读次数:0
搭建公司wiki系统-confluence
搭建公司wiki系统-confluence 一、环境 # uname -a Linux client02 2.6.32-754.el6.x86_64 #1 SMP Tue Jun 19 21:26:04 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux # java - ...
分类:其他好文   时间:2021-04-08 13:16:28    阅读次数:0
DOT + graphviz 轻松画图神器
在线调试地址: Graphviz Online 用法: dot语法 Linux环境下用法: 参考资料: 1. Linux绘图工具之dot 2. 实验: 首先创建一个dot文件,fllow.dot vi fllow.dot digraph G { hello [shape=box]; world [s ...
分类:其他好文   时间:2021-04-08 13:10:42    阅读次数:0
WSL2作为phpstorm/ide 的默认终端
通过这篇文章将wsl设置为默认的终端:Windows Subsystem for Linux Installation Guide for Windows 10 1、查看wsl子系统: PS C:\WINDOWS\system32> .\wslconfig.exe /list 适用于 Linux 的 ...
分类:Web程序   时间:2021-04-08 13:04:23    阅读次数:0
STL之序列化容器
#序列化容器 以线性排列(类似普通数组的存储方式)来存储某一指定类型(例如 int、double 等)的数据。需要特殊说明的是,该类容器并不会自动对存储的元素按照值的大小进行排序。 STL提供了vector,list,deque,stack,queue,priority-queue。其中stack, ...
分类:其他好文   时间:2021-04-08 13:03:24    阅读次数:0
linux上执行wget报错:unable to resolve host address
linux上执行wget报错:unable to resolve host address 爱摄影的coder 2018-07-21 10:25:19 7270 收藏 4 分类专栏: Linux 版权 使用wegt命令报错情况 [root@centosserver2 downloads]# wget ...
分类:系统相关   时间:2021-04-08 13:03:11    阅读次数:0
linux服务器安装python虚拟环境
linux服务器安装python虚拟环境 今天要部署一个服务化的接口程序,需要创建一个Python的虚拟环境。 1、安装虚拟环境 sudo pip install virtualenv sudo pip install virtualenvwrapper 2 安装完虚拟环境后,如果提示找不到mkvi ...
分类:编程语言   时间:2021-04-08 13:02:57    阅读次数:0
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!