Category: Algrithm

基于协同过滤的推荐系统

views 282 views    0
2013-11-01    Algrithm    views 282 views    0   

在米扑博客上一篇《基于内容和基于协同过滤的混合推荐系统》博文中,我已经总结了几种主要的推荐方法,其中,基于内容 […]

基于内容和基于协同过滤的混合推荐系统

views 691 views    0
2013-11-01    Algrithm    views 691 views    0   

在前面的博文中,已经详细介绍了基于内容和基于协同的推荐系统,它们都有各自的优点和缺点。 因此,目前有很多学者都 […]

聚类算法之KMeans(Java实现)

views 309 views    0
2013-11-01    Algrithm    views 309 views    0   

KMeans算法的基本思想是初始随机给定K个簇中心,按照最邻近原则把待分类样本点分到各个簇。然后按平均法重新计 […]

Hulu的推荐引擎阅读笔记

views 270 views    0
2013-11-01    Algrithm    views 270 views    0   

一, Item Data shows’ type: on-air shows(直播剧) librar […]

【leetcode】ConstructBinaryTreefromInorderandPostorderTraversal

views 4,008 views    0
2013-05-04    Algrithm, CSDN    views 4,008 views    0   

Question: Given inorder and postorder traversal of a tr […]

【leetcode】ConstructBinaryTreefromPreorderandInorderTraversal

views 4,350 views    0
2013-05-03    Algrithm, CSDN    views 4,350 views    0   

Question: Given preorder and inorder traversal of a tre […]

【leetcode】BinaryTreeInorderTraversal

views 2,868 views    0
2013-05-03    Algrithm, CSDN    views 2,868 views    0   

Question : Given a binary tree, return the inorder trav […]

【leetcode】FlattenBinaryTreetoLinkedList

views 3,732 views    0
2013-05-02    Algrithm, CSDN    views 3,732 views    0   

Question : Given a binary tree, flatten it to a linked […]

【leetcode】BinaryTreeLevelOrderTraversalII

views 4,130 views    0
2013-05-01    Algrithm, CSDN    views 4,130 views    0   

Question : Given a binary tree, return the bottom-up le […]

【leetcode】BalancedBinaryTree

views 2,621 views    0
2013-05-01    Algrithm, CSDN    views 2,621 views    0   

Question : Given a binary tree, determine if it is heig […]

【leetcode】MinimumDepthofBinaryTree

views 2,487 views    0
2013-05-01    Algrithm, CSDN    views 2,487 views    0   

Question : Given a binary tree, find its minimum depth. […]

【leetcode】GenerateParentheses

views 3,189 views    0
2013-05-01    Algrithm, CSDN    views 3,189 views    0   

Question : Given n pairs of parentheses, write a functi […]

【leetcode】LongestValidParentheses

views 2,678 views    0
2013-05-01    Algrithm, CSDN    views 2,678 views    0   

Question: Given a string containing just the characters […]

【leetcode】ValidParentheses

views 3,169 views    0
2013-05-01    Algrithm, CSDN    views 3,169 views    0   

Question : Given a string containing just the character […]

【leetcode】BinaryTreeMaximumPathSum

views 2,484 views    0
2013-05-01    Algrithm, CSDN    views 2,484 views    0   

Question : Given a binary tree, find the maximum path s […]

【leetcode】LetterCombinationsofaPhoneNumber

views 3,350 views    0
2013-05-01    Algrithm, CSDN    views 3,350 views    0   

Question : Given a digit string, return all possible le […]

【leetcode】LongestConsecutiveSequence

views 2,435 views    0
2013-05-01    Algrithm, CSDN    views 2,435 views    0   

Question : Given an unsorted array of integers, find th […]

【leetcode】ValidNumber

views 3,164 views    0
2013-04-21    Algrithm, CSDN    views 3,164 views    0   

Question : Validate if a given string is numeric. Some […]

【leetcode】WordLadderII

views 3,397 views    0
2013-04-21    Algrithm, CSDN    views 3,397 views    0   

Question : Given two words ( start and end ), and a dic […]

【leetcode】WordLadder

views 2,008 views    0
2013-04-21    Algrithm, CSDN    views 2,008 views    0   

Question : Given two words ( start and end ), and a dic […]

【leetcode】BestTimetoBuyandSellStockIII

views 1,906 views    0
2013-04-21    Algrithm, CSDN    views 1,906 views    0   

Question : Say you have an array for which the i th ele […]

【leetcode】BestTimetoBuyandSellStockII

views 1,579 views    0
2013-04-21    Algrithm, CSDN    views 1,579 views    0   

Quesion : Say you have an array for which the i th elem […]

【leetcode】BestTimetoBuyandSellStock

views 2,160 views    0
2013-04-21    Algrithm, CSDN    views 2,160 views    0   

Question : Say you have an array for which the i th ele […]

【leetcode】IntegertoRoman

views 2,340 views    0
2013-04-21    Algrithm, CSDN    views 2,340 views    0   

Question : Given an integer, convert it to a roman nume […]

【leetcode】RomantoInteger

views 2,290 views    0
2013-04-21    Algrithm, CSDN    views 2,290 views    0   

Question : Given a roman numeral, convert it to an inte […]

回顶部