码迷,mamicode.com
首页 >  
搜索关键字:amp    ( 86777个结果
20150625
1、查找盒子中名字含有dy的apk的位置busybox find -name *.apk|grep dy2、诚迈邮箱https://webmail.archermind.com/owa/auth/logon.aspx?replaceCurrent=1&url=https%3a%2f%2fwebmai...
分类:其他好文   时间:2015-06-25 13:46:46    阅读次数:281
html decode 方法
当使用document.querySelector('') 获取元素时,发现html里某些特殊字符被处理和转意了,处理后格式如下:<>&'' ………………PS: 当我不熟悉正则的时候,想偷懒的时候,就借用HTMLDivElement object获取内容,竟然发现!!....
分类:Web程序   时间:2015-06-25 12:15:49    阅读次数:219
Bitwise AND of Numbers Range
Description:Given a range [m, n] where 0 =0; i++)15 x = x&i;16 return x;17 }18 }View Code
分类:其他好文   时间:2015-06-25 12:03:36    阅读次数:84
引用和指针的比较
引用和指针的比较引用是C++中的概念,初学者容易把二者混淆。例1: int m; int &n = m; 在这里,n相当于是m的别名,对n的任何操作就是对m的操作。n既不是m的拷贝,也不是指向m的指针,其实n就是m它自己。例2: int i = 0; int j = 5; int &k = i; k...
分类:其他好文   时间:2015-06-25 11:44:25    阅读次数:105
Shell Step by Step (3) —— Stdin & if
4.输入输出#! /bin/bash # Read users input and then get his name read -p "Please input your first name: " firstName read -p "Please input your last name: " lastName echo -e "Your full name is: $firstName...
分类:系统相关   时间:2015-06-25 10:33:32    阅读次数:157
Shell Step by Step (4) —— Cron & Echo
6.脚本定时任务# Example of job definition: # .------------------------- minute (0 - 59) # | .--------------------- hour (0 - 23) # | | .----------------- day of month (1 - 31) # | | | .-...
分类:系统相关   时间:2015-06-25 10:33:21    阅读次数:246
c-复习基础
c语言中基本数据类型int 使用%ddouble/float 使用%fchar 使用%c内存地址使用%p查看内存地址:inta;printf("a的地址是:%p\n", &a);&是C语言中的一个地址运算符,可以用来获取变量的地址intage; scanf("%d", &age);scanf的第1个...
分类:其他好文   时间:2015-06-25 10:22:09    阅读次数:126
55. Jump Game && 45. Jump Game II
Jump GameGiven an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents yo...
分类:其他好文   时间:2015-06-25 10:14:11    阅读次数:117
Best Time to Buy and Sell Stock——LeetCode
原题地址:https://leetcode.com/problems/best-time-to-buy-and-sell-stock/          内容都在代码和注释里,就不罗嗦了。 class Solution { public: int maxProfit(vector& prices) { /* 这类题目已经遇到过几次,都是要在一维数组中...
分类:其他好文   时间:2015-06-25 09:07:05    阅读次数:121
颜色空间
目前接触到的只有 RGB 和 HSV其他的也就不特意看了,免得混淆。HSV:Hue-色相,就是颜色。取值 0~360Saturation-饱和度,颜色的“纯度”。Value-亮度,取值0~1看图,V=1&&S = 0时是白色。RGB:RGB565是使用16位表示一个像素:5位表示R,6位表示G,5位...
分类:其他好文   时间:2015-06-25 06:42:18    阅读次数:168
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!