最近需要批量将PNM格式的文件转换成GIF文件。我尝试了如下的图像转换工具:
ImageBatch:完全免费,但仅仅支持PNG JPEG BMP GIF四种格式
OfficeConverter:在线转换软件,支持所有图像格式的相互转换,大量处理图像时需要支付一定费用,否则效率很低
Pixillion:支持所有格式,试用版仅仅最多支持5个文件为一组batch的处理,使用100次以后...
分类:
其他 时间:
2015-06-10 06:33:53
收藏:
0 评论:
0 赞:
0 阅读:
206
简单题IGiven 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...
分类:
其他 时间:
2015-06-10 06:33:23
收藏:
0 评论:
0 赞:
0 阅读:
140
题意:思路:#include#include#include#include#includeusing namespace std;int a[200];int dp1[1000+10];int dp2[1000+10];int main(){ int t,n; int i,j,k; ...
分类:
其他 时间:
2015-06-10 06:33:13
收藏:
0 评论:
0 赞:
0 阅读:
272
Given an array where elements are sorted in ascending order, convert it to a height balanced BST.题解完全抄自ref的说明,感谢!“题解:先复习下什么是二叉搜索树(引自Wikipedia):二叉查找树(B...
分类:
其他 时间:
2015-06-10 06:33:03
收藏:
0 评论:
0 赞:
0 阅读:
185
超简洁的代码本来考虑是不是真的要每个点求一个maxDepth,看来是的哟public class Solution { public boolean isBalanced(TreeNode root) { if (root==null) return true; i...
分类:
其他 时间:
2015-06-10 06:32:53
收藏:
0 评论:
0 赞:
0 阅读:
170
就recursive做,简单题public class Solution { public int minDepth(TreeNode root) { if(root==null) return 0; if (root.left==null && root.righ...
分类:
其他 时间:
2015-06-10 06:32:43
收藏:
0 评论:
0 赞:
0 阅读:
251
原文链接http://blog.csdn.net/morewindows/article/details/6684558快速排序由于排序效率在同为O(N*logN)的几种排序方法中效率较高,因此经常被采用,再加上快速排序思想----分治法也确实实用,因此很多软件公司的笔试面试,包括像腾讯,微软等知名...
分类:
编程语言 时间:
2015-06-10 06:32:33
收藏:
0 评论:
0 赞:
0 阅读:
111
leetcode中有几道题使用同一个思路,大致是先维护一个窗口,每次只移动窗口左侧或者右侧的边界,然后针对这个窗口内的元素进行处理。这种方式使用两个指针,可以将问题的运行时间降到O(n)内。Longest Substring Without Repeating Characters:https://...
分类:
其他 时间:
2015-06-10 06:32:23
收藏:
0 评论:
0 赞:
0 阅读:
187
题意:思路:#include#include#include#include#include#include#include#include#includeusing namespace std;struct Work{ __int64 c,d;};Work work[100000+10];i...
分类:
其他 时间:
2015-06-10 06:32:13
收藏:
0 评论:
0 赞:
0 阅读:
93
Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthest le...
分类:
其他 时间:
2015-06-10 06:32:03
收藏:
0 评论:
0 赞:
0 阅读:
270
Given a binary tree, return thelevel ordertraversal of its nodes' values. (ie, from left to right, level by level).For example:Given binary tree{3,9,2...
分类:
其他 时间:
2015-06-10 06:31:53
收藏:
0 评论:
0 赞:
0 阅读:
205
简单题ref“使用的是先序遍历,算法的复杂度跟遍历是一致的,如果使用递归,时间复杂度是O(n),空间复杂度是O(logn)。” by codegankerhttp://blog.csdn.net/linhuanmars/article/details/22839819?Time to search ...
分类:
其他 时间:
2015-06-10 06:31:43
收藏:
0 评论:
0 赞:
0 阅读:
190
跟之前的解法一模一样Binary Tree Level Order Traversal I,II 不赘述public class Solution { public ArrayList> zigzagLevelOrder(TreeNode root) { ArrayList> r...
分类:
其他 时间:
2015-06-10 06:31:23
收藏:
0 评论:
0 赞:
0 阅读:
279
Two elements of a binary search tree (BST) are swapped by mistake.Recover the tree without changing its structure.Note:A solution using O(n) space is ...
分类:
其他 时间:
2015-06-10 06:31:13
收藏:
0 评论:
0 赞:
0 阅读:
237
有个问题,就是不能和same tree一样光看root 做recursive而是必须比较左右节点,因为对称是指整个树否则就会出现 1 2 2 # 3 3public class Solution { public boolean isSymmetric(TreeNode root) { ...
分类:
其他 时间:
2015-06-10 06:30:53
收藏:
0 评论:
0 赞:
0 阅读:
215
Implement a basic calculator to evaluate a simple expression string.The expression string may contain open(and closing parentheses), the plus+or minus...
分类:
其他 时间:
2015-06-10 06:30:43
收藏:
0 评论:
0 赞:
0 阅读:
162
1.irb参数配置~/.irbrcIRB.conf[:PROMPT_MODE] = :SIMPLE #简化 irb 提示符,以及禁用一些烦人的自动缩进行为IRB.conf[:AUTO_INDENT_MODE] = false2.注释:#单行=begin......多行=end3.字符串字符串连接>....
分类:
其他 时间:
2015-06-10 06:30:33
收藏:
0 评论:
0 赞:
0 阅读:
169
自从2014.7.9加入**软研以来,一直都做windows UI方面的开发,主要语言为C++;时间很快就过去了,一直都没时间也许是没精力写一些记录,但越觉得写写文档的必要性了;那么果断的申请了博客,记录下以前的,今后的程序生涯的点点滴滴,一是鼓励自己不断沉淀技术,职业文化等等;再者以后也有一个可以...
分类:
Windows开发 时间:
2015-06-10 06:30:23
收藏:
0 评论:
0 赞:
0 阅读:
305
导航栏高度获取1 self.navigationController.navigationBar.frame.size.height状态栏高度获取1 [UIApplication sharedApplication].statusBarFrame.size.height标签栏高度获取1 tabVie...
分类:
其他 时间:
2015-06-10 06:29:33
收藏:
0 评论:
0 赞:
0 阅读:
274
Problem Description“连连看”相信很多人都玩过。没玩过也没关系,下面我给大家介绍一下游戏规则:在一个棋盘中,放了很多的棋子。如果某两个相同的棋子,可以通过一条线连起来(这条线不能经过其它棋子),而且线的转折次数不超过两次,那么这两个棋子就可以在棋盘上消去。不好意思,由于我以前没有玩...
分类:
其他 时间:
2015-06-10 06:29:03
收藏:
0 评论:
0 赞:
0 阅读:
212