Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3....
                            
                            
                                分类:
其他好文   时间:
2014-04-29 13:47:20   
                                阅读次数:
251
                             
                         
                    
                        
                            
                            
                                在windows下运行VMware创建的虚拟机时出错,无法运行。
错误提示大概为:
Failed to lock the file
Cannot open the disk 'D:\Windows Server 2008 R2 x64.vmdk' or one of the snapshot disks it depends on.
解决方法:
       把虚拟机文件夹里【.lck】...
                            
                            
                                分类:
其他好文   时间:
2014-04-29 13:28:21   
                                阅读次数:
366
                             
                         
                    
                        
                            
                            
                                Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path.
Note: You can only move either down or right at...
                            
                            
                                分类:
其他好文   时间:
2014-04-28 10:46:41   
                                阅读次数:
311
                             
                         
                    
                        
                            
                            
                                paip.元数据驱动的转换-读取文件行到个list理念 uapi java php python总结
#两个思路
1.思路如下:使用file_get_contents()获取txt文件的内容,然后通过explode()把获得的字符串转化为数组。获得数组长度可以使用count()函数
2.使用按照行读取api
在正则表达式中,有一个\n是newline的意思,又有一个\r是carri...
                            
                            
                                分类:
编程语言   时间:
2014-04-28 10:46:40   
                                阅读次数:
304
                             
                         
                    
                        
                            
                            
                                前面对C++ 面向对象的基本了解和认识,下面来运用前面的基础知识,来实现一个简单的雇员工资管理系统,雇员分为2中,普通员工和管理者,两者工资和工作年限挂钩。具体参见下图:
具体实现参见下面的代码:
/*File : salarySystem.h
 *Auth : sjin
 *Date : 2014-04-27
 *Mail : 413977243@qq.com
 */
#ifnde...
                            
                            
                                分类:
编程语言   时间:
2014-04-28 10:43:42   
                                阅读次数:
401
                             
                         
                    
                        
                            
                            
                                在C++ 的世界里,new 和delete 是关键字,而在C的世界里相对应的malloc和free是函数,关键C++的new和delete分析,详见前面的章节,这里就不在过多的介绍了。链接。
下面来研究下关于new 和delete的重载。
 1、对比使用重载和未使用重载
 未使用“/*File : operator_new.cpp
 *Auth : sjin
 *Date : 2014-04...
                            
                            
                                分类:
编程语言   时间:
2014-04-28 10:43:41   
                                阅读次数:
406
                             
                         
                    
                        
                            
                            
                                Problem Description
Given an integer N(0 ≤ N ≤ 10000), your task is to calculate N!
 
Input
One N in one line, process to the end of file.
 
Output
For each N, output N! i...
                            
                            
                                分类:
其他好文   时间:
2014-04-28 10:36:41   
                                阅读次数:
341
                             
                         
                    
                        
                            
                            
                                题目描述
Cainiao is a university student who loves ACM contest very much. It is a festival for him once when he attends ACM Asia Regional Contest because he always can find some famous ACMers there.
C...
                            
                            
                                分类:
其他好文   时间:
2014-04-28 10:33:40   
                                阅读次数:
340
                             
                         
                    
                        
                            
                            
                                http://acm.hdu.edu.cn/showproblem.php?pid=1595
大致题意:
给一个图,让输出从中删除任意一条边后所得最短路径中最长的。。
思路:
直接枚举每条边想必是不行的。其实有些边是不需要枚举的,因为删除它们并不影响起点到终点的最短路。起作用的边都是未删边前的最短路径上的边,删除它们最短距离肯定增大,只需在这些最短距离中求最大的即可。
记录最短路...
                            
                            
                                分类:
Web程序   时间:
2014-04-28 10:24:42   
                                阅读次数:
393
                             
                         
                    
                        
                            
                            
                                欢迎加入我们的QQ群,无论你是否工作,学生,只要有c / vc / c++ 编程经验,就来吧!158427611 
所谓的unicode文件,无非就是在文件头部插入了 0xFFFE的标志。。。读写的时候对应的读写 就可以了。
namespace fileStream
{
    bool readFile_Unicode( const string &file ,wstr...
                            
                            
                                分类:
编程语言   时间:
2014-04-28 10:22:41   
                                阅读次数:
678