- 博客(19)
- 收藏
- 关注
原创 [Leetcode] 1. Two Sum
class Solution {public: vector<int> twoSum(vector<int> &numbers, int target) { int vSize = numbers.size(); vector<int> vIndex; map<int,int> mapNum; int index;
2015-04-12 15:53:26 428
原创 [Leetcode] 189.Rotate Array
class Solution {public: void rotate(int nums[], int n, int k) { k %= n; reverse(nums, n-k, n-1); reverse(nums, 0, n-k-1); reverse(nums, 0, n-1); } void rever
2015-04-12 11:34:34 385
原创 [Leetcode] 100. Same Tree
/** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */class Solutio
2015-04-12 09:49:03 410
原创 [Leetcode] 27.Remove Element
class Solution {public: int removeElement(int A[], int n, int elem) { int j = 0; for (int i = 0; i < n; i++) { if(A[i] == elem) { continue;
2015-04-12 09:19:58 349
原创 [Leetcode]7.Reverse Integer
class Solution {public: int reverse(int x) { bool isPositive = true; if (x == INT_MIN || x == INT_MAX) return 0; if (x < 0) { isPositive = false;
2015-04-07 01:12:47 343
原创 概率为0的事件,必然不能发生吗?
记录下这个概率的经典问题,理解还是不够透彻,把大家的讨论与理解记录下。概率为 0 的事件,必然不能发生吗?概率为 1 的事件,必然能发生吗?(知乎)概率为 0 的事件,必然不能发生吗?(豆瓣)一个简单却又很多人搞错的数学概念关于概率为0的事件和不可能事件与测度相关,略难啊测度(维基百科)概率与测度测度论与概率论基础
2015-03-14 13:31:15 1665
原创 Jensen's inequality 相关知识记录 (Jensen 不等式)
Jensen不等式证明凸函數、Jensen 不等式與 Legendre 變換Jensen’s inequality (wikipedia)琴生不等式(维基百科)琴生不等式(百度百科)
2015-03-14 10:44:37 1998
原创 Coursera-Machine Learning 之 Logistic Regression (逻辑回归)-0x02
Cost FunctionTraining set(训练集):
2015-02-19 16:35:24 440
原创 TENSE(时态)
Corusera-Foundmental English Writing-TENSE(时态) PRESENT(现在时) PAST(过去时) FUTURE(将来时) Simple Tense(一般时) Use An action or event that occurs regularly or repeatedly. An action that e
2015-02-16 20:36:40 889
原创 Corusera-Foundmental English Writing-Subjects 主语
Number(数量) Person(人称) Gender(性别) Case(Subjective) Singular 1st Female/male I 2nd Female/male You 3rd Female She Male He Neuter It Plural 1st Fem
2015-02-14 17:01:22 471
原创 Coursera-Machine Learning 之 Logistic Regression (逻辑回归)-0x01
Hypothesis Representation (假设函数表达式)Decision Boundary (决策边界)
2015-02-11 17:53:35 422
原创 Pronouns 代词
Subject Pronouns(主格代词)Objective Pronouns(宾格代词)Indefinite Pronouns(不定代词)Relative Pronouns(关系代词)Demonstrative Pronouns(指示代词)Possessive Pronouns(物主代词)Interrogative Pronouns (疑问代词)Reflexive Pronouns
2015-02-06 11:40:21 1522
原创 SQL injection(SQL 注入攻击) 原理浅析
1.database 数据库A database is an organized collection of data. The data is typically organized to model aspects of reality in a way that supports processes requiring information.数据库,简单来说可视为电子化的文件柜——
2015-01-30 09:56:14 607
原创 R语言 学习之路
runif产生均匀分布的数eg. runif(100, min=80, max=100)产生最大值为100,最小值为80的均匀分布的100个数。
2015-01-01 14:16:11 564
原创 算法(字符串移动,单词翻转)
题目1:题目2:输入一个英文句子,番句子中单词的顺序,但单词内字符的顺序不变。句子中单词以空格符隔开。句子中标点符号和普通字母一样处理。例如输入“I am a student.”,则输出“student. a am I”。解决方法:先将整个句子翻转,再将其中的每个单词翻转参考:程序员编程艺术:第一章、左旋转字符串
2014-12-15 16:48:17 625
转载 Ubuntu 12.04 LTS 中文输入法的安装
转载来自于 http://www.cnblogs.com/zhj5chengfeng/p/3150620.html 我装的是Ubuntu 12.04中文版的,参考设置也是可以的,以下均为该作者内容,仅作为参考。本文是笔者使用 Ubuntu 操作系统写的第一篇文章!参考了红黑联盟的这篇文章:Ubuntu 12.04 中文输入法的安装 安装 Ubuntu 12
2014-03-08 10:58:14 487
转载 Ubuntu 12.04 root登录
Ubuntu默认无法以root账户登录,只能以普通用户或者guest账户登录,以普通用户登录之后进行设置,可以实现以root账户登录的功能。1. 以普通用户登录ubuntu 12.042. 打开终端,获得root权限[plain] viewplaincopysudo -s 输入普通用户密码后回车即可获得r
2014-03-08 09:42:24 431
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人