码迷,mamicode.com
首页 > 2014年07月31日 > 全部分享
Python 提取Twitter用户的Tweet
Python 提取Twitter用户的Tweet...
分类:编程语言   时间:2014-07-31 07:28:36    阅读次数:346
android如何在textview或edittext上添加表情
先上效果图: 首先来写一个表情的GridView public class EmotionView extends LinearLayout implements OnItemClickListener { private GridView mGridView; private static final ArrayList emotionDisplayList = new...
分类:移动开发   时间:2014-07-31 07:28:25    阅读次数:388
工作那些事(三十一)如何带好一个项目团队
很多人写了几年代码都想去做管理,其实做管理要处理的事情更多,要协调内部和外部资源,要会踢皮球,把问题抛给别的部门,与其他主管扯来扯去。那如何才能带好一个项目团队呢。...
分类:其他好文   时间:2014-07-31 07:28:15    阅读次数:216
java基础之HTTP协议详解
HTTP协议通信过程详解 HTTP请求详解 HTTP响应详解...
分类:编程语言   时间:2014-07-31 07:28:05    阅读次数:215
spring4 aop annotation
package com.zrd.aop.annotation; /** * 第一步:定义一个接口 * * @author ZRD * */ public interface IMyService { int add(int i, int j); } package com.zrd.aop.annotation; import org.springframework.stere...
分类:编程语言   时间:2014-07-31 07:27:55    阅读次数:351
pyqt 托盘例子学习
#-*-coding:utf-8-*-#python:2.x__author__='Administrator'fromPyQt4.QtGuiimport*fromPyQt4.Qtimport*fromPyQt4.QtCoreimport*fromtpimportUi_Formimportsysfr...
分类:其他好文   时间:2014-07-31 07:27:25    阅读次数:477
MYCCL复合特征码定位器简介
复合特征码辅助定位工具 MyCCL by:Tanknight 、前言 自从CCL问世以来,特征码修改已经成为了对付杀毒软件的常用手法,但是所谓魔高一尺,道高一丈杀毒软件开始使用多重复合特征码来对付特征码修改就是说只有你同时改掉程序所有的守护特征码 此程序才不被杀。 所以本程序的作用是进行多重特...
分类:其他好文   时间:2014-07-31 07:27:05    阅读次数:284
IT公司100题-6-根据上排给出十个数,在其下排填出对应的十个数
问题描述:给你10分钟时间,根据上排给出十个数,在其下排填出对应的十个数要求下排每个数都是先前上排那十个数在下排出现的次数。上排的十个数如下:【0,1,2,3,4,5,6,7,8,9】举一个例子,数值: 0,1,2,3,4,5,6,7,8,9分配: 6,2,1,0,0,0,1,0,0,00在下排出现...
分类:其他好文   时间:2014-07-31 07:26:55    阅读次数:260
Subset leetcode java
题目:Given a set of distinct integers, S, return all possible subsets.Note:Elements in a subset must be in non-descending order.The solution set must n....
分类:编程语言   时间:2014-07-31 05:22:45    阅读次数:286
C/C++ extern关键字
在阅读代码的时候经常遇见extern关键字,由于平时接触很少一般没用到所以不是很熟,这里特别学习一下。首先得熟悉C++中声明与定义的概念。变量的定义用于为变量分配存储空间,还可以为变量指定初始值,在一个程序中变量有且仅有一个定义。变量的声明用于向程序表面变量的类型和名字。定义也是声明:当定义变量时我...
分类:编程语言   时间:2014-07-31 05:22:35    阅读次数:338
LeetCode "Combination Sum II"
The only difference with version I is: one number can only be used once:class Solution {public: vector > ret; struct Rec { Rec() : sum...
分类:其他好文   时间:2014-07-31 05:22:25    阅读次数:239
Path Sum II leetcode java
题目:Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.For example:Given the below binary tree and ....
分类:编程语言   时间:2014-07-31 05:22:15    阅读次数:287
Letter Combinations of a Phone Number leetcode java
题目:Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit to letters (just like on the tele....
分类:编程语言   时间:2014-07-31 05:22:05    阅读次数:307
Convert Sorted Array to Binary Search Tree leetcode java
题目:Given an array where elements are sorted in ascending order, convert it to a height balanced BST.题解:先复习下什么是二叉搜索树(引自Wikipedia):二叉查找树(Binary Search ....
分类:编程语言   时间:2014-07-31 05:21:55    阅读次数:215
new 、operator new 和 placement new
一、原生operatornew 我们先从原生operatornew开始。考虑如下代码,它用来分配5个int型的空间并返回指向他们的指针[1]: int*v=static_cast(::operatornew(5*sizeof(*v))); 当像如上的调用,operatornew扮演原生的内存分...
分类:其他好文   时间:2014-07-31 05:21:45    阅读次数:313
Balanced Binary Tree leetcode java
题目:Given a binary tree, determine if it is height-balanced.For this problem, a height-balanced binary tree is defined as a binary tree in which the d....
分类:编程语言   时间:2014-07-31 05:21:35    阅读次数:221
Path Sum leetcode java
题目:Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given su....
分类:编程语言   时间:2014-07-31 05:21:25    阅读次数:214
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!