码迷,mamicode.com
首页 >  
搜索关键字:note    ( 7358个结果
C语言入门:指针的概要
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
347. Top K Frequent Elements
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
LeetCode Solution-125
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
Mybatis映射器 select 简单的select元素的应用 id 配合Mapper的全限定名,联合成为一个唯一的标示 parameterType 表示这条SQL接受的参数类型 resultType表示这条SQL返回的结果类型 {firstName} 是被传递进去的参数 与映射文件匹配的接口方法 ...
分类:其他好文   时间:2020-02-05 20:36:09    阅读次数:87
ubuntu13.10安装增强功能
步骤: 1>cd /mnt 2> ./VBoxLinuxAdditions.run 3>设置共享文件夹share 4>访问共享文件夹cd /media/sf_share note: 只有安装增强功能,共享文件夹才可以用 ...
分类:系统相关   时间:2020-02-05 16:44:04    阅读次数:79
LeetCode-3. Longest Substring Without Repeating Characters
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
Python学习(五):启动和关闭exe
#启动 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
Unicode字符串
字符串还有一个编码问题。 因为计算机只能处理数字,如果要处理文本,就必须先把文本转换为数字才能处理。最早的计算机在设计时采用8个比特(bit)作为一个字节(byte),所以,一个字节能表示的最大的整数就是255(二进制11111111=十进制255),0 - 255被用来表示大小写英文字母、数字和一 ...
分类:其他好文   时间:2020-02-04 23:32:43    阅读次数:68
taro1.3.4版本 config index配置
dev.js // NOTE H5 端使用 devServer 实现跨域,需要修改 package.json 的运行命令,加入环境变量 const isH5 = process.env.CLIENT_ENV 'h5' const HOST = '"https://miniapp.you.163.co ...
分类:其他好文   时间:2020-02-04 15:58:31    阅读次数:467
LeetCode Solution-90
90. Subsets II Given a collection of integers that might contain duplicates, nums , return all possible subsets (the power set). Note : The solution s ...
分类:其他好文   时间:2020-02-04 00:42:05    阅读次数:78
7358条   上一页 1 ... 47 48 49 50 51 ... 736 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!