自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 资源 (1)
  • 收藏
  • 关注

原创 LeetCode:Reverse Vowels of a String

题目:Write a function that takes a string as input and reverse only the vowels of a string.Example 1:Given s = "hello", return "holle".Example 2:Given s = "leetcode", return "leotcede"

2017-10-11 22:24:13 95

原创 LeetCode:Valid Parentheses

题目:Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.The brackets must close in the correct order, "()" and "()[]{}" are

2017-10-07 10:55:42 83

原创 LeetCode: Longest Common Prefix

题目:Write a function to find the longest common prefix string amongst an array of strings.For example:{"a","a","b"} should give "" as there is nothing common in all the 3 strings.{"a",

2017-10-04 21:12:43 101

原创 LeetCode:Palindrome Number

题目:Determine whether an integer is a palindrome. Do this without extra space.(就是一个数字如果反着读和顺着读是一样的,那就是palindrome)我用到的方法就是用上一篇文章reverse number提到的方法,把这个数反过来,如果反过来的数与原数相等,那么这个数就是palindrome。不过首先判断是不是负数,负

2017-10-03 16:26:35 106

原创 LeetCode:Reverse Integer

题目:Reverse digits of an integer.Example1: x = 123, return 321Example2: x = -123, return -321The input is assumed to be a 32-bit signed integer. Your function should return 0 when the

2017-10-03 16:17:03 146

原创 LeetCode : two Sum

问题: Given an array of integers, return indices of the two numbers such that they add up to a specific target.You may assume that each input would have exactly one solution, and you may not use

2017-10-03 15:57:20 104

数据仓库与数据挖掘 第八章关联规则挖掘

数据仓库与数据挖掘: 关联规则挖掘的基本概念  关联规则挖掘的过程  Apriori算法  Apriori算法的变形  频繁模式增长(FP-增长)算法  其他关联规则挖掘算法  关联规则价值衡量的方法  关联规则挖掘的应用

2018-08-11

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除