IntroductionThis document provides instructions 
for integrating Openfire authentication, users, and groups with your custom 
database tables. This is u...
                            
                            
                                分类:
数据库   时间:
2014-05-05 12:46:39   
                                阅读次数:
672
                             
                    
                        
                            
                            
                                类似这样的语句在mysql oracle 是可以执行成功的,select * from 
classfirst where (classid ,classname) not in (select classid, classname from 
classfirst where classid=2 )但...
                            
                            
                                分类:
数据库   时间:
2014-05-05 11:15:31   
                                阅读次数:
386
                             
                    
                        
                            
                            
                                reference 
from:http://www.cs.bgu.ac.il/~spl051/Personal_material/Practical_sessions/Ps_12/ps12.htmlJava 
server class with multiple client connections:...
                            
                            
                                分类:
其他好文   时间:
2014-05-04 10:15:23   
                                阅读次数:
355
                             
                    
                        
                            
                            
                                BeautifulSoup 善于网页数据分析 ,抓取CSDN极客头条内容放入ListView ,
用户点击选择 webViewShow 网页href
geek.py  超过100行,得闲时看吧
# -*- coding: utf-8 -*-
import android
import urllib2, re
from BeautifulSoup import BeautifulSoup
im...
                            
                            
                                分类:
移动开发   时间:
2014-05-04 09:53:02   
                                阅读次数:
468
                             
                    
                        
                            
                            
                                travel the binary tree by level 2 ( from top to down )
个人信息:就读于燕大本科软件工程专业 目前大三;
本人博客:google搜索“cqs_2012”即可;
个人爱好:酷爱数据结构和算法,希望将来从事算法工作为人民作出自己的贡献;
博客内容:travel the binary tree by level 2 (...
                            
                            
                                分类:
其他好文   时间:
2014-05-04 09:27:56   
                                阅读次数:
334
                             
                    
                        
                            
                            
                                题目描述:
Hzz loves aeroplane chess very much. The chess map contains N+1 grids labeled from 0 to N. Hzz starts at grid 0. For each step he throws a dice(a dice have six faces with equal probability to...
                            
                            
                                分类:
其他好文   时间:
2014-05-04 09:18:42   
                                阅读次数:
321
                             
                    
                        
                            
                            
                                travel the binary tree by level( from top to down)
个人信息:就读于燕大本科软件工程专业 目前大三;
本人博客:google搜索“cqs_2012”即可;
个人爱好:酷爱数据结构和算法,希望将来从事算法工作为人民作出自己的贡献;
博客内容:travel the binary tree by level( from top t...
                            
                            
                                分类:
其他好文   时间:
2014-05-04 09:17:12   
                                阅读次数:
292
                             
                    
                        
                            
                            
                                题目如下:
``Accordian'' Patience 
You are to simulate the playing of games of ``Accordian'' patience, the rules for which are as follows:
    Deal cards one by one in a row from left to right, no...
                            
                            
                                分类:
其他好文   时间:
2014-05-04 09:08:31   
                                阅读次数:
329
                             
                    
                        
                            
                            
                                travel the binary tree by level 3 ( from down to top )
个人信息:就读于燕大本科软件工程专业 目前大三;
本人博客:google搜索“cqs_2012”即可;
个人爱好:酷爱数据结构和算法,希望将来从事算法工作为人民作出自己的贡献;
博客内容:travel the binary tree by level 3 ( f...
                            
                            
                                分类:
其他好文   时间:
2014-05-04 09:00:55   
                                阅读次数:
294
                             
                    
                        
                            
                            
                                题意:要连出一个从1-L的过山车线,给出n段可选的建设方案。每段都有起始位置,终止位置,代价,和乐趣程度。要实现1-L的长度中,相邻两端要首尾相连,总建设代价控制在B之内,问最多能获得多少乐趣程度。
解法:二维dp, num[i][j]记录恰好建设到i并且用掉代价j多能获得的最多乐趣。先将每段可选方案按照位置排序,然后进行转移。最后选max(num[L][i]),i from 0 to ...
                            
                            
                                分类:
其他好文   时间:
2014-05-04 08:57:59   
                                阅读次数:
267