不知道是自己水平不够,还是水晶报表自身的缺陷,水晶在纸张控制这块比较弱(特别是半联Letter),达不到客户需求,改ActiveReport 3.0 纸张方面倒是解决了,但在行(套打)固定方面,又让我伤脑筋,经过两天的摸索,终于搞定:
 if( rpt.PageNumber.ToString() ==((TextBox)rpt.Sections["PageHeader1"].Controls["...
                            
                            
                                分类:
其他好文   时间:
2015-05-05 14:29:19   
                                阅读次数:
141
                             
                    
                        
                            
                            
                                题目:
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
                             
                    
                        
                            
                            
                                题目: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
                             
                    
                        
                            
                            
                                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
                             
                    
                        
                            
                            
                                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
                             
                    
                        
                            
                            
                                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
                             
                    
                        
                            
                            
                                虽然是水题,一开始也错了好多次,真是坑啊!
#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
                             
                    
                        
                            
                            
                                问题描述:
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
                             
                    
                        
                            
                            
                                题意:预先给你一些单词,然后给你一个字符串,在判断有多少个单词出现在这个字符串中。
分析:使用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...
                            
                            
                                分类:
编程语言   时间:
2015-04-24 10:36:33   
                                阅读次数:
146