码迷,mamicode.com
首页 >  
搜索关键字:res    ( 29153个结果
linu samba服务
关闭防火墙并且重启网络yum install samba samba-client samba-commmon -ysystemctl start smb smbclient -L //172.25.254.104 匿名用户登陆(vim /etc/hosts)pdbedit -L 显示smb用户sm ...
分类:其他好文   时间:2018-08-19 12:58:15    阅读次数:142
Leetcode-890 查找和替换模式
1 class Solution 2 { 3 public: 4 vector findAndReplacePattern(vector& words, string pattern) 5 { 6 vector result; 7 map store; 8 map st... ...
分类:其他好文   时间:2018-08-19 11:57:57    阅读次数:291
test
C++代码 c++ include include include include include include include include int test() { int a = 5; return a; } using namespace std; void parserTest() { ...
分类:其他好文   时间:2018-08-19 11:07:05    阅读次数:136
Consideration about improving mathematics study
In this article, I’ll present my ideas about how to improve mathematics study, which are the forewords of my handwriting notes on Royden’s “Real Analy ...
分类:其他好文   时间:2018-08-19 11:00:37    阅读次数:147
tail -f -n 0 /var/log/messages
<pre><font color="#CC0000"><b>root@kali</b></font>:<font color="#3465A4"><b>~</b></font># tail -f -n 0 /var/log/messagesAug 18 22:19:42 kali kernel: [ ...
分类:其他好文   时间:2018-08-19 00:52:24    阅读次数:134
算法 (一) 概念
前言 Algorithms + Data Structures = Programs //N.Wirth 1976 虽然大一大二学了数据结构和很多算法,但是一到用的时候就经常想不起来...,而且明年就要考研了,为了能让自己更系统的掌握,决定要全面的学习一下,为以后打好基础!!! 一、概念 1) 计算 ...
分类:编程语言   时间:2018-08-18 22:22:50    阅读次数:140
JavaScript:基本包装类型
为了方便操作,JavaScript提供了3个特殊的引用类型:Boolean、Number和String。实际上,每当读取一个基本类型值的时候,后台就会创建一个对应的基本包装类型的对象,从而可以调用这些类型的方法来操作数据。 var s1 = "hello javascript"; var s2 = ...
分类:编程语言   时间:2018-08-18 21:46:31    阅读次数:149
01.序言——卓越领导者
00.有效的领导能力=领导特性(attribute) * 绩效(result) 01.优秀并不等于卓越,您的企业需要您卓尔不凡 02.优秀的领导者能够把人们带到他们想去的地方;卓越的领导者能够把人们带到他们没想到要去但是应该去的地方。 03.成为一名卓越领导者并非意味着可以同时处理好30件不同的事情 ...
分类:其他好文   时间:2018-08-18 19:40:41    阅读次数:137
CENTOS7下安装REDIS
1、安装redis 第一步:下载redis安装包 wget http://download.redis.io/releases/redis-4.0.6.tar.gz 1 2 3 4 5 6 7 8 9 10 11 [root@iZwz991stxdwj560bfmadtZ local]# wget ...
分类:其他好文   时间:2018-08-18 18:33:43    阅读次数:141
位运算实现加减乘除
int Add(int a, int b) { int sum = 0; while(b!=0) { sum = a^b; b = ((a&b)>= 1; } return isNeg(a)==isNeg(b) ? res : NegNum(res); } int Div(int a, int b)... ...
分类:其他好文   时间:2018-08-18 17:49:34    阅读次数:147
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!