码迷,mamicode.com
首页 >  
搜索关键字:letter    ( 1667个结果
真开心,第一次写ActiveReport 脚本给终于运行成功!
不知道是自己水平不够,还是水晶报表自身的缺陷,水晶在纸张控制这块比较弱(特别是半联Letter),达不到客户需求,改ActiveReport 3.0 纸张方面倒是解决了,但在行(套打)固定方面,又让我伤脑筋,经过两天的摸索,终于搞定:  if( rpt.PageNumber.ToString() ==((TextBox)rpt.Sections["PageHeader1"].Controls["...
分类:其他好文   时间:2015-05-05 14:29:19    阅读次数:141
LeetCode 17 Letter Combinations of a Phone Number 数字转为字母组合
题目: Given a digit string, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the telephone buttons) is given below. Input...
分类:其他好文   时间:2015-05-04 12:00:15    阅读次数:107
Letter Combinations of a Phone Number
题目:Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit to letters (just like on the telep...
分类:其他好文   时间:2015-05-04 08:37:28    阅读次数:183
LeetCode 17 Letter Combinations of a Phone Number
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-05-03 20:30:08    阅读次数:112
Java for LeetCode 017 Letter Combinations of a Phone Number
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-05-02 11:04:18    阅读次数:161
hdu 1686 ac自动机
Problem DescriptionThe French author Georges Perec (1936–1982) once wrote a book, La disparition, without the letter 'e'. He was a member of the Oulip...
分类:其他好文   时间:2015-04-30 00:50:15    阅读次数:149
HDU ACM 1591 Encoded Love-letter
虽然是水题,一开始也错了好多次,真是坑啊! #include using namespace std; char a[101]; char c[26]; bool index[26]; void create() { int i,j; memset(index,0,sizeof(index)); for(i=0;i<strlen(a);i++) ...
分类:Web程序   时间:2015-04-26 22:55:08    阅读次数:172
leetcode-17 Letter Combinations of a Phone Number
问题描述: Given a digitstring, return all possible letter combinations that the number couldrepresent. A mapping of digitto letters (just like on the telephone buttons) is given below. Input:Digi...
分类:其他好文   时间:2015-04-24 19:15:54    阅读次数:173
HDU ACM 2222->AC自动机模版题(入门题)
题意:预先给你一些单词,然后给你一个字符串,在判断有多少个单词出现在这个字符串中。 分析:使用AC自动机解决。下面是自己写的类模版。可以直接使用。最后记得释放内存。 #include #include using namespace std; #define LETTER_COUNT 26 class AC_Automation { private: struct Node { ...
分类:其他好文   时间:2015-04-24 14:24:29    阅读次数:127
[Java]LeetCode17 Letter Combinations of a Phone Number
[Java]LeetCode17 Letter Combinations of a Phone Number...
分类:编程语言   时间:2015-04-24 10:36:33    阅读次数:146
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!