码迷,mamicode.com
首页 > 2016年01月13日 > 全部分享
[2016-1-13]OMG美语每日笔记-Who is your BFF?
坚持学习英语,OMG口语非常长不错,坚持每天整理.学英语坚持最重要,学英语坚持最重要,学英语坚持最重要说三遍! BFF一辈子的好友If you all have been watching OMGMeiyu for a while you know Melissa is my BFF.如果你看OMG...
分类:其他好文   时间:2016-01-13 08:11:38    阅读次数:195
三元表达式
做开发的都知道三元表达式,三元表达式的魅力是每个程序员都无法拒绝的,它能在一定程度上节约程序员的时间,也能让代码看起来不那么臃肿。 三元表达式的语法很简单:数据类型 变量名==XX ? PP : NN;是不是很简单,能代替你写一个简单的if-else和一些switch了吧,当然一些复制的判断还是得....
分类:其他好文   时间:2016-01-13 08:11:10    阅读次数:142
Asp.Net 请求处理机制
原文:http://www.cnblogs.com/cilence/archive/2012/05/28/2520712.htmlAsp.Net 请求处理机制前言我们都知道Web请求响应是基于Http协议,那么我们可以这样来理解,一次Web请求和响应的过程,实际上就是一次发送Http请求和接收Htt...
分类:Web程序   时间:2016-01-13 08:10:10    阅读次数:174
cocos2d-x中使用JNI的调用JAVA方法
用cocos2d-x公布Android项目时。都应该知道要用JAVA与C/C++进行交互时会涉及到JNI的操作(Java Native Interface)。JNI是JAVA的一个通用接口。旨在本地化语言(如C\C++)与JAVA语言进行交互。在交互过程成中,JAVA调用的是已编译好的本地化语言的二...
分类:编程语言   时间:2016-01-13 08:08:37    阅读次数:233
Shell脚本文件中常用的操作语句
1. 清空文件中的内容 cat /dev/null >> /var/log/messages2. 脚本中判断用户是不是root用户 ROOT_UID = 0 # $UID 为0时,用户才具有root用户权限 if [ "$UID" -ne "$ROOT_UID"] ...
分类:系统相关   时间:2016-01-13 08:09:05    阅读次数:142
Jan 12 - Delete Node in a Linked List; Data Structure; Linked List; Pointer;
代码:/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */pub...
分类:其他好文   时间:2016-01-13 08:09:55    阅读次数:179
<LeetCode OJ> 141. Linked List Cycle
141. Linked List Cycle My Submissions Question Total Accepted: 88665 Total Submissions: 241622 Difficulty: Medium Given a linked list, determine if it has a cycle in it. Follow up...
分类:其他好文   时间:2016-01-13 07:08:50    阅读次数:167
MongoDB使用小结:一些不常见的经验分享
最近一年忙碌于数据处理相关的工作,跟MongoDB打交道极多,以下为实践过程中的Q&A,后续会不定期更新补充。1、count统计结果错误这是由于分布式集群正在迁移数据,它导致count结果值错误,需要使用aggregate pipeline来得到正确统计结果,例如:db.collection.agg...
分类:数据库   时间:2016-01-13 07:08:08    阅读次数:709
Jan 12 - Power of Two; Integer; Bit Manipulation;
Two's complement of integer:https://zh.wikipedia.org/wiki/%E4%BA%8C%E8%A3%9C%E6%95%B8Bit Manipulation:https://docs.oracle.com/javase/tutorial/java/nut...
分类:其他好文   时间:2016-01-13 07:05:07    阅读次数:137
Jan 12 - Lowest Common Ancestor of a Binary Search Tree; Tree; BST; Recursion;
/** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { v...
分类:其他好文   时间:2016-01-13 07:05:18    阅读次数:180
华为oj 之 蜂窝小区最短距离
/* 学习了一种新的解题方法,很巧妙,利用坐标系来解题。 参考:http://blog.csdn.net/nys001/article/details/12637201*/ 1 #include 2 #include 3 #include 4 #include 5 #inclu...
分类:其他好文   时间:2016-01-13 07:04:07    阅读次数:450
Jan 12 - Implement Queue using Stacks; Stack; Queue Implementation;
代码:class MyQueue { // Push element x to the back of queue. Stack stack = new Stack(); Stack aux = new Stack(); public void push(int x) { ...
分类:其他好文   时间:2016-01-13 07:06:32    阅读次数:227
谷歌CEO 宣布Google I/O 2016大会将于2016年5月18日Mountain View举办
谷歌CEO Sundar Pichai今日在他的官方Twitter上宣布,Google I/O 2016大会将于2016年5月18日在加州Mountain View拉开帷幕。这是谷歌一年一度最大的开发者大会。在刚刚过去的2015年,Google I/O大会被评为2015年最受欢迎的开发者大会,位列苹...
分类:其他好文   时间:2016-01-13 07:05:43    阅读次数:207
2016/01/13开始学习git:远程仓库
要关联一个远程库,使用命令git remote add origin git@server-name:path/repo-name.git; 关联后,使用命令git push -u origin master第一次推送master分支的所有内容; 此后,每次本地提交后,可以使用命令git push ...
分类:其他好文   时间:2016-01-13 07:05:49    阅读次数:133
反汇编objc分析__block
"You can specify that an imported variable be mutable—that is, read-write— by applying the__blockstorage type modifier."文档已经清楚说明了它的作用。反汇编就是要看个究竟。__blo...
分类:其他好文   时间:2016-01-13 07:06:00    阅读次数:246
Jan 12 - Summary Ranges;Array;String
Functions of StringBuilder:代码:public class Solution { public List summaryRanges(int[] nums) { List list = new ArrayList(); if(nums.le...
分类:其他好文   时间:2016-01-13 07:03:49    阅读次数:202
mongodb初步使用
下载安装: 下载MongoDB:http://www.mongodb.org/。 安装MongoDB:傻瓜式安装配置: 把bin目录添加到系统环境变量启动: 打开一个 cmd编辑框,输入:mongod.exe --dbpath F:\MongoDbdata\test startmongodb...
分类:数据库   时间:2016-01-13 07:04:32    阅读次数:189
1271条   上一页 1 ... 64 65 66 67 68 69 70 ... 75 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!