from: https://site.douban.com/234383/widget/notes/16373827/note/528386068/ aceking 2015-12-11 07:41:54 Pacman是Arch Linux 的包管理器。它将一个简单的二进制包格式和易用的构建系统结合 ...
分类:
其他好文 时间:
2020-02-08 13:36:06
阅读次数:
67
文章详情查看链接:http://note.youdao.com/noteshare?id=b2e8133939128feea9456c84332bff12&sub=94E6898F8AF249878BC3595A7E36CD13 ...
分类:
其他好文 时间:
2020-02-06 20:10:40
阅读次数:
47
1 /* Note:Your choice is C IDE */ 2 #include "stdio.h" 3 void main() 4 { 5 //指针 6 //什么是指针 一个变量的地址 就是该变量的指针 7 // 咱们学习的C语言里把 地址 叫做指针 8 //如果想访问地址 需要用什么方法 ...
分类:
编程语言 时间:
2020-02-06 19:27:57
阅读次数:
60
Given a non-empty array of integers, return the k most frequent elements. Example 1: Input: nums = [1,1,1,2,2,3], k = 2 Output: [1,2] Example 2: Input ...
分类:
其他好文 时间:
2020-02-06 14:26:57
阅读次数:
65
125. Valid Palindrome Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. Note : For the pur ...
分类:
其他好文 时间:
2020-02-05 23:49:36
阅读次数:
129
Mybatis映射器 select 简单的select元素的应用 id 配合Mapper的全限定名,联合成为一个唯一的标示 parameterType 表示这条SQL接受的参数类型 resultType表示这条SQL返回的结果类型 {firstName} 是被传递进去的参数 与映射文件匹配的接口方法 ...
分类:
其他好文 时间:
2020-02-05 20:36:09
阅读次数:
87
步骤: 1>cd /mnt 2> ./VBoxLinuxAdditions.run 3>设置共享文件夹share 4>访问共享文件夹cd /media/sf_share note: 只有安装增强功能,共享文件夹才可以用 ...
分类:
系统相关 时间:
2020-02-05 16:44:04
阅读次数:
79
Given a string, find the length of the longest substring without repeating characters. Example 1: Input: "abcabcbb" Output: 3 Explanation: The answer ...
分类:
其他好文 时间:
2020-02-05 13:42:39
阅读次数:
59
#启动 import win32api #0.打开ONENOTE win32api.ShellExecute(0,'open',r'C:\...\ONENOTEM.EXE','','',1) #1.打开TIM win32api.ShellExecute(0,'open',r'C:\...\TIM.e ...
分类:
编程语言 时间:
2020-02-04 23:52:28
阅读次数:
164
字符串还有一个编码问题。 因为计算机只能处理数字,如果要处理文本,就必须先把文本转换为数字才能处理。最早的计算机在设计时采用8个比特(bit)作为一个字节(byte),所以,一个字节能表示的最大的整数就是255(二进制11111111=十进制255),0 - 255被用来表示大小写英文字母、数字和一 ...
分类:
其他好文 时间:
2020-02-04 23:32:43
阅读次数:
68