码迷,mamicode.com
首页 >  
搜索关键字:letter    ( 1667个结果
CSS笔记
CSS书写顺序:1.位置属性(position, top, right, z-index, display, float等)2.大小(width, height, padding, margin)3.文字系列(font, line-height, letter-spacing, color- tex...
分类:Web程序   时间:2015-04-12 17:29:42    阅读次数:1339
CSS设计指南之伪元素
1. :first-line 伪元素"first-line" 伪元素用于向文本的首行设置特殊样式。2.:first-letter 伪元素"first-letter" 伪元素用于向文本的首字母设置特殊样式:3. :before 伪元素":before" 伪元素可以在元素的内容前面插入新内容。4. :a...
分类:Web程序   时间:2015-04-11 14:46:35    阅读次数:163
C++/CLI——使用嵌套 if 语句的 CLR 程序
// 嵌套ifCLR.cpp: 主项目文件。 #include "stdafx.h" using namespace System; int main(array ^args) { wchar_t letter; Console::WriteLine(L"Enter a letter: "); letter = Console::Read(); if(let...
分类:编程语言   时间:2015-04-10 09:41:34    阅读次数:167
leetcode_Letter Combinations of a Phone Number
思路: 本题目要实现的效果就是产生一系列广义有序的字符串序列,本来想假如知道digits字符串长度的话,可以搞一个n层循环,但是digits的长度是未知的。想了好久,想到了用递归来实现本题目要实现的功能,每个数字循环到数字所代表字符的个数大小时,返回上一级递归,然后再在上一级的循环层次计数上再加1即可。 当字符的长度等于digits的长度时,说明已经产生一组有效的字符串,存储起来,然后将最后一个字符删除,继续循环。。。。 最后,当index<0时,说明整个循环已经结束,over!但是在具体实现的过程中,递...
分类:其他好文   时间:2015-04-09 21:55:57    阅读次数:130
most-wanted-letter
题目:我的解法: 1 def checkio(text): 2 import string 3 str = text.encode().lower() 4 adict = {} 5 for i in string.lowercase[::-1]: 6 ...
分类:其他好文   时间:2015-04-09 21:34:13    阅读次数:138
hdu3518---Boring counting(后缀数组,对后缀分组)
Problem Description 035 now faced a tough problem,his english teacher gives him a string,which consists with n lower case letter,he must figure out how many substrings appear at least twice,moreover,s...
分类:编程语言   时间:2015-04-09 15:34:55    阅读次数:213
文字排版效果
text-show:2px 2px 5px gray;文字阴影显示letter-spacing:1px; 文字间距1px;padding:10px; 内边距10px;-webkit-columns:atuo 3; 文字分为三排-webkit-column-gap:30px; 间空隙30px;...
分类:其他好文   时间:2015-04-07 17:27:33    阅读次数:355
Letter Combinations of a Phone Number——LeetCode
Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit to letters (just like on the telephon...
分类:其他好文   时间:2015-04-06 15:30:40    阅读次数:107
hdu 1686 Oulipo【kmp】
Problem Description The French author Georges Perec (1936–1982) once wrote a book, La disparition, without the letter 'e'. He was a member of the Oulipo group. A quote from the book: Tout avait Pa...
分类:其他好文   时间:2015-04-06 12:58:20    阅读次数:192
hdu 4046 Panda 树状数组
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4046When I wrote down this letter, you may have been on the airplane to U.S. We have known for 15 years...
分类:编程语言   时间:2015-04-04 13:34:06    阅读次数:320
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!