- 博客(11)
- 收藏
- 关注
原创 01-HTML基础
一,HTML简介 HTML(HyperText Markup Language):是一种描述性的标记语言,用于描述超文本中内容的显示方式,最终由浏览器解析,然后显示出来。 1,名词的解析: 超文本:页面的数据可以通过标签改变样式,而且可以通过超链接直接跳到下一个页面。 标记:html是通过标签来定义的语言,代码是由标签组成。 2,HTML语言特点: html语言是与平台无关的,任
2015-12-07 16:17:01 265
原创 17,Letter Combinations of a Phone Number
Given a digit string, return all possible letter combinations that the number could represent.//给一个字符串,求出所以数字序列
2015-03-15 17:27:58 246
原创 15,3Sum
Given 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.
2015-03-15 16:08:47 243
原创 14,Longest Common Prefix
Write a function to find the longest common prefix string amongst an array of strings.//写一个函数,求出字符串数组的最长公共前缀
2015-03-14 16:24:57 237
原创 11,Integer to Roman
Given an integer, convert it to a roman numeral.//给一个整形,转换成罗马数字
2015-03-09 13:07:02 315
原创 10,Regular Expression Matching
mplement regular expression matching with support for '.' and '*'.
2015-03-09 11:49:33 158
原创 9,Palindrome Number
Determine whether an integer is a palindrome. Do this without extra space.//判断是否为回文数字
2015-03-08 11:22:11 270
原创 8,String to Integer (atoi)
Implement atoi to convert a string to an integer.//实现atoi函数,实现字符串到整形的转换
2015-03-08 10:29:05 273
原创 5,Longest Palindromic Substring
Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longest palindromic substring.//给你一个字符串,找出最长回文子串
2015-03-07 00:51:07 241
原创 4,Median of Two Sorted Arrays
There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).//两个已排序的数组,求出其中位数,例如[0,1] [2,3]中位数为1.5,[0] [1,2]中位数为1。算法时间复杂度为O(log(m+n));
2015-03-05 01:19:49 278
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人