06 2015 档案

leetcode 20 Valid Parentheses 括号匹配
摘要:Given a string containing just the characters '(', ')', '{', '}', '[' and']', determine if the input string is valid. The brackets must close i... 阅读全文

posted @ 2015-06-30 22:34 吴一达 阅读(117) 评论(0) 推荐(0) 编辑

leetcode 14 Longest Common Prefix
摘要:Write a function to find the longest common prefix string amongst an array of strings. 我的解决方案: class Solution {public: string longestCommonP... 阅读全文

posted @ 2015-06-29 22:53 吴一达 阅读(128) 评论(0) 推荐(0) 编辑

推荐一个计算机视觉图书:python计算机视觉编程
摘要:编辑部的主页:好像没啥用 http://shop.oreilly.com/product/0636920022923.do 每章的代码,github上面的:中文版 https://github.com/willard-yuan/pcv-book-code github上面... 阅读全文

posted @ 2015-06-29 21:19 吴一达 阅读(272) 评论(0) 推荐(0) 编辑

leetcode 9 Palindrome Number 回文数
摘要:Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints: Could negative integers be pali... 阅读全文

posted @ 2015-06-28 20:21 吴一达 阅读(153) 评论(0) 推荐(0) 编辑

ios swift模仿qq登陆界面,xml布局
摘要:给大家推荐两个学习的地址: 极客学院的视频:http://www.jikexueyuan.com/path/ios/ 一个博客:http://blog.csdn.net/lizhongfu2013/article/details/29210015 主要想要实现一个模仿的登陆界面 代码: ... 阅读全文

posted @ 2015-06-26 15:00 吴一达 阅读(151) 评论(0) 推荐(0) 编辑

leetcode 26 Remove Duplicates from Sorted Array
摘要:Remove Duplicates from Sorted ArrayTotal Accepted: 66627 Total Submissions: 212739 My Submissions Given a sorted arra... 阅读全文

posted @ 2015-06-25 15:52 吴一达 阅读(123) 评论(0) 推荐(0) 编辑

leetcode 88 Merge Sorted Array
摘要:Given two sorted integer arrays nums1 and nums2, merge nums2 intonums1 as one sorted array. Note: You may assume that nums1 has enough space (si... 阅读全文

posted @ 2015-06-24 22:47 吴一达 阅读(138) 评论(0) 推荐(0) 编辑

VC++读取图像RGB值
摘要:代码: #include #include #include #include #include #pragma comment(lib, "gdiplus.lib")using namespace std;using namespace Gdiplus;int main() { G... 阅读全文

posted @ 2015-06-24 17:19 吴一达 阅读(303) 评论(0) 推荐(0) 编辑

leetcode 27 Remove Element
摘要: Remove Element Total Accepted: 60351 Total Submissions: 187833 My Submissions Given an array and a value, remove al... 阅读全文

posted @ 2015-06-24 15:56 吴一达 阅读(122) 评论(0) 推荐(0) 编辑

leetcode 8 String to Integer (atoi)
摘要:String to Integer (atoi)Total Accepted:52232 Total Submissions:401038 My Submissions Implement atoi to convert a string to an integer. Hint:... 阅读全文

posted @ 2015-06-24 00:03 吴一达 阅读(114) 评论(0) 推荐(0) 编辑

leetcode 226 Invert Binary Tree 翻转二叉树
摘要:大牛没有能做出来的题,我们要好好做一做 Invert a binary tree. 4 / \ 2 7 / \ / \1 3 6 9 to 4 / \ 7 2 / \ / \9 6 3 1 Trivia... 阅读全文

posted @ 2015-06-23 23:53 吴一达 阅读(108) 评论(0) 推荐(0) 编辑

My Upload.com product submission has been approved
摘要:This morning I got to know that My product DB Query Analyzer had been appoved by upload.com, which was a definite good news to me. Nearly approximat... 阅读全文

posted @ 2015-06-23 13:01 吴一达 阅读(199) 评论(0) 推荐(0) 编辑

FFmpeg在ubuntu下安装及使用
摘要:FFmpeg是一套可以用来记录、转换数字音频、视频,并能将其转化为流的开源计算机程序。采用LGPL或GPL许可证。它提供了录制、转换以及流化音视频的完整解决方案。它包含了非常先进的音频/视频编解码库libavcodec,为了保证高可移植性和编解码质量,libavcodec里很多codec都是从头开... 阅读全文

posted @ 2015-06-10 17:36 吴一达 阅读(373) 评论(0) 推荐(0) 编辑

curl命令备注
摘要:curl是利用URL语法在命令行方式下工作的开源文件传输工具。它被广泛应用在Unix、多种Linux发行版中,并且有DOS和Win32、Win64下的移植版本。1.get请求:curl "http://blog.csdn.net/undoner?birthyear=1905&press=OK"2.... 阅读全文

posted @ 2015-06-10 14:06 吴一达 阅读(127) 评论(0) 推荐(0) 编辑

CentOS配置防火墙
摘要:昨天帮朋友配置CentOS服务器,一开始为了方便测试直接把防火墙关了,之后便需要配置好防火墙,网上找了几个防火墙规则都有错误,后来发现是博主发帖不认真,有太多字符错误,下面是我整理的亲测可用的防火墙规则的配置过程:修改 iptables-config首先修改iptables-con... 阅读全文

posted @ 2015-06-08 23:48 吴一达 阅读(149) 评论(0) 推荐(0) 编辑

leetcode 21 Merge Two Sorted Lists
摘要:Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. 我的... 阅读全文

posted @ 2015-06-05 21:59 吴一达 阅读(113) 评论(0) 推荐(0) 编辑

OpenCL异构计算资料收集
摘要:Easy OpenCL with Python 原文 http://www.drdobbs.com/open-source/easy-opencl-with-python/240162614 OpenCL与python联合工作:与CUDA的前景分析 http://www.o... 阅读全文

posted @ 2015-06-03 20:45 吴一达 阅读(162) 评论(0) 推荐(0) 编辑

DB 查询分析器 方便地创建DB2自定义函数
摘要:DB 查询分析器 方便地创建DB2自定义函数 马根峰 (广东联合电子服务股份有限公司, 广州 510300)摘要 本文详细地介绍了“万能数据库查询分析器”,中文版本《DB 查询分析器》、英文版本《DB Qu... 阅读全文

posted @ 2015-06-02 12:15 吴一达 阅读(367) 评论(0) 推荐(0) 编辑

基于Bootstrap的Metro风格模板
摘要:这几天在看Bootstrap的一些书,这里整理一下书中的一些模板,方便以后使用。 1.BootMetro http://www.guoxiaoming.com/bootmetro/ 2.Bootswatch http://bootswatch.com/ 3.Metro UI CSS... 阅读全文

posted @ 2015-06-02 11:22 吴一达 阅读(199) 评论(0) 推荐(0) 编辑

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示