码迷,mamicode.com
首页 > 2015年08月19日 > 全部分享
96 Unique Binary Search Trees
96 Unique Binary Search Trees链接:https://leetcode.com/problems/unique-binary-search-trees/ 问题描述: Given n, how many structurally unique BST’s (binary search trees) that store values 1…n?For example, G...
分类:其他好文   时间:2015-08-19 07:08:28    阅读次数:126
ZOJ 3674 Search in the Wiki(字典树 + map + vector)
题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=4917 题意:每个单词都一些tips单词。先输入n个单词和他们的tips。然后m组查询,每次查询一些单词,按字典序输出这些单词的公有tips。 思路:对第i个单词,用vector数组g,g[i]来存这个单词的所有tips。对于所有单词建立字典树,在单...
分类:其他好文   时间:2015-08-19 07:09:08    阅读次数:217
android bitmap的 一些简单操作
原文链接:http://www.2cto.com/kf/201312/265180.html 全都是一些代码片段,需要可以直接贴过去用 /** 获取 drawable 的图片 可以循环 1.图名 2.drawable 3.包名 **/ int imgid = getResources().getIdentifier("ic_launcher", ...
分类:移动开发   时间:2015-08-19 07:07:38    阅读次数:138
Android在OnCreate中获取控件的宽度和高度
原文链接:http://www.cnblogs.com/wt616/archive/2012/05/11/2496180.html 在Android中,有时需要对控件进行测量,得到的控件宽度和高度可以用来做一些计算。在需要自适应屏幕的情况下,这种计算就显得特别重要。另一方便,由于需求的原因,希望一进入界面后,就能得到控件的宽度和高度。 可惜的是,根据我的验证,利用网上转载的...
分类:移动开发   时间:2015-08-19 07:10:29    阅读次数:127
hdu 4292 Food【拆点网络流】
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4292解法:拆人代码:#include #include #include #include #include #include #include <functiona...
分类:其他好文   时间:2015-08-19 07:07:30    阅读次数:136
Android 设置图片 Bitmap任意透明度
原文链接:http://blog.csdn.net/yanzi1225627/article/details/29661935 两种思路,第一种思路是通过对Bitmap进行操作,将Bitmap的像素值get到一个int[]数组里,因为在android里Bitmap通常是ARGB8888格式,所以最高位就是A通道的值,对齐进行改变后再新建一个Bitmap即可。第二种思路是通过设置canvas的...
分类:移动开发   时间:2015-08-19 07:09:21    阅读次数:184
101 Symmetric Tree
101 Symmetric Tree链接:https://leetcode.com/problems/symmetric-tree/ 问题描述: Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).For example, this binary tree...
分类:其他好文   时间:2015-08-19 07:08:32    阅读次数:143
Topcoder SRM 327 Div1 300!
题意:给一个字符串,含有大写字母或者问号’?’。一个字符串被定义为ugly,则能在字符串中找到三个连续的元音字符或者五个非元音字符;一个字符串被定义为nice,则它不是ugly的。现在问,可否改将所有’?’变成字符,使得字符串成为nice或ugly的,如果都可以,输出”47”,如果只能一个,输出”UGLY”或”NICE”。解法:对于是否可为ugly的情况,很简单,将每个’?’都变为元音,看是否存在3...
分类:其他好文   时间:2015-08-19 07:09:13    阅读次数:175
129 Sum Root to Leaf Numbers
129 Sum Root to Leaf Numbers链接:https://leetcode.com/problems/sum-root-to-leaf-numbers/ 问题描述: Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number.An...
分类:其他好文   时间:2015-08-19 07:08:42    阅读次数:176
android 改变bitmap颜色
public static final Bitmap createRGBImage(Bitmap bitmap,int color) { int bitmap_w=bitmap.getWidth(); int bitmap_h=bitmap.getHeight(); int[] arrayColor=new int[bitmap_w*bitmap_h];         int coun...
分类:移动开发   时间:2015-08-19 07:07:15    阅读次数:152
100 Same Tree
100 Same Tree链接:https://leetcode.com/problems/same-tree/ 问题描述: Given two binary trees, write a function to check if they are equal or not.Two binary trees are considered equal if they are structurall...
分类:其他好文   时间:2015-08-19 07:08:34    阅读次数:146
[Python学习] 在Windows下安装PhantomJS和CasperJS及入门介绍(上)
最近在使用Python爬取网页内容时,总是遇到JS临时加载、动态获取网页信息的困难。例如爬取CSDN下载资源评论、搜狐图片中的“原图”等,此时尝试学习Phantomjs和CasperJS来解决这个问题。这第一篇文章当然就是安装过程及入门介绍,主要先介绍Phantomjs安装过程及常见用法,参考官方文档,包括:网页截图、页面加载、代码运算、DOM操作、网络请求及响应等,希望对你有所帮助~...
分类:编程语言   时间:2015-08-19 07:08:52    阅读次数:227
关于压缩软件gzip和xz的简单对比
晚上由于处理磁盘报警的需要,进行了日志压缩,在此次压缩中跟别使用了gzip和xz软件对文本进行了压缩,压缩的结果非常令人诧异。   出于对xz好奇的原因是因为在下载内核源代码时经常可以看到.xz格式的文件包,而且其大小比.gz和.bz2格式的文件都小一些。首先简单介绍一下gzip和xz: gzip:GZIP最早由Jean-loup Gailly和Mark Adler...
分类:其他好文   时间:2015-08-19 07:08:54    阅读次数:449
Android中Handler Runnable与Thread的区别详解
原文链接:http://www.codeceo.com/article/android-handler-runnable-thread.html Android中Handler可以异步控制Runnable,那么这样做于Android中的Thread有什么区别呢?本文将通过多个角度来讲解这个问题,读完此文,相信你会对Android中的Handler Runnable与Thread有一个非常全面...
分类:移动开发   时间:2015-08-19 07:06:55    阅读次数:118
Scala中ListBuffer高效遍历
package com.dt.scala.list object ListBuffer_Internals { def main(args: Array[String]): Unit = { val list = List(1,2,3,4,5,6,7,8,9) increment(list) increment_MoreEffective(list) inc...
分类:其他好文   时间:2015-08-19 07:07:17    阅读次数:205
【LeetCode-面试算法经典-Java实现】【139-Word Break(单词拆分)】
【139-Word Break(单词拆分)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】原题  Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary wo...
分类:编程语言   时间:2015-08-19 07:06:04    阅读次数:528
卡特兰数
卡特兰数又称卡塔兰数,英文名Catalan number,是组合数学中一个常出现在各种计数问题中出现的数列。由以比利时的数学家欧仁·查理·卡塔兰 (1814–1894)命名,其前几项为 : 1, 2, 5, 14, 42, 132, 429, 1430, 4862, 16796, 58786, .....
分类:其他好文   时间:2015-08-19 07:05:31    阅读次数:164
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!