07 2013 档案

摘要:分类器:Adaboost资源:UCI数据集:包括文本、图像、数据等CMU人脸demoUESTC人脸卡通数据库iiitd人脸卡通化 阅读全文
posted @ 2013-07-16 18:22 懒猫欣 阅读(151) 评论(0) 推荐(0)
摘要:http://ai.stanford.edu/~ang/ Andrew NGpluskid leftNotEasyJuly52nlp 阅读全文
posted @ 2013-07-16 16:38 懒猫欣 阅读(162) 评论(0) 推荐(0)
摘要:3SumJan 18 '12 6170 / 23359Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.Note:Elements in a triplet (a,b,c) must be in non-descending order. (ie, a ? b ? c)The solution set must not conta 阅读全文
posted @ 2013-07-10 21:45 懒猫欣 阅读(215) 评论(0) 推荐(0)
摘要:3Sum Closest Jan 18 '12 3725 / 9704Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. You may assume that each input would have exactly one solution.For example, given array S = {-1 2 1 -4}, and t 阅读全文
posted @ 2013-07-10 09:49 懒猫欣 阅读(209) 评论(0) 推荐(0)
摘要:Add BinaryApr 2 '12 3558 / 10570Given two binary strings, return their sum (also a binary string).For example, a = "11" b = "1" Return "100".class Solution {public: string addBinary(string a, string b) { // Start typing your C/C++ solution below // DO NOT write int 阅读全文
posted @ 2013-07-09 08:54 懒猫欣 阅读(175) 评论(0) 推荐(0)
摘要:Add Two Numbers Nov 1 '11 5998 / 20033You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.Input: (2 -> 4 -> 3) + (5 -> 6 -> 4) O 阅读全文
posted @ 2013-07-08 12:33 懒猫欣 阅读(195) 评论(0) 推荐(0)
摘要:LeetCode-Two SumLeetCode-Median of Two Sorted ArraysLeetCode-Longest Substring Without Repeating CharactersLeetCode-Add Two NumbersLeetCode-Longest Palindromic SubstringLeetCode-ZigZag ConversionLeetCode-Reverse IntegerLeetCode-String to Integer (atoi)LeetCode-Palindrome NumberLeetCode-Container Wit 阅读全文
posted @ 2013-07-08 12:30 懒猫欣 阅读(598) 评论(0) 推荐(0)