#include#includebool isprime(int num){ int sqr=(int)sqrt(num*1.0); //【skill】判断素数只要判断到开平方就可以了 for(int i=2 ; i=l && cnt=r) break; ...
分类:
其他好文 时间:
2015-02-24 13:47:35
阅读次数:
167
Description描述You want to arrange the window of your flower shop in a most pleasant way. You haveFbunches of flowers, each being of a different kind, a...
分类:
其他好文 时间:
2015-02-24 13:47:45
阅读次数:
230
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:
其他好文 时间:
2015-02-24 13:46:45
阅读次数:
160
面向对象的三大特性1)封装(set方法和get方法,掌握)2)继承(掌握)3)多态(理解概念即可)继承的好处:抽取了公共代码,提高了代码复用率继承的坏处:代码的耦合性强(就是类与类之间的联系)/*继承要点:1.当调用方法时,首先检测子类有没有实现这个方法,如果子类没有实现,就会调用父类的实现2.重写...
分类:
移动开发 时间:
2015-02-24 13:46:52
阅读次数:
193
#include#includebool isprime(int num) //判断素数的子函数{ int sqr=(int)sqrt(num*1.0); for(int i=2 ; i<sqr+1 ; ++i) if(num%i==0) return 0; re...
分类:
其他好文 时间:
2015-02-24 13:45:13
阅读次数:
108
网上很多相关到资料,不过都比较繁琐,下面给出一个链接:http://chrome.richardlloyd.org.uk/,里面有详细都说明,可以先把install_chrome.sh文件下载下来,然后执行(不需要修改该文件内容)chmod u+x install_chrome.sh./inst.....
分类:
其他好文 时间:
2015-02-24 13:46:20
阅读次数:
152
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:
其他好文 时间:
2015-02-24 13:45:03
阅读次数:
164
TFDUpdateSQL生成添加,删除,修改SQL语句TFDMetaInfoQuery查询数据源信息TFDEventAlerter负责处理数据库事件通知使用TFDEventAlerter类来处理数据库事件通知。FDEventAlerter1.Options.Kind := 'DBMS_ALERT';...
分类:
其他好文 时间:
2015-02-24 13:46:10
阅读次数:
415
读《人月神话》有感 《人月神话》是IBM360系统之父布鲁克斯所著的经典,它为人们管理复杂项目提供了颇具洞察力的见解,既有很多发人深省的观点,也有大量的软件工程实践,读后受益匪浅,倍受启发。本书分为1...
分类:
其他好文 时间:
2015-02-24 13:44:31
阅读次数:
241
· c++ basics: file I/Osmechanisms to create user-defined data typesthe problem-solving processMatrix multiplication:Write a C++ program to compute the...
分类:
数据库 时间:
2015-02-24 13:44:20
阅读次数:
217
在UML的定义中,描写叙述类和对象之间的关系,包含下面几种方式:依赖(Dependency)、关联(Association)、聚合(Aggregation)、组合(Composition)、泛化(Generalization)和实现(Realization)。现分别说明例如以下:1.依赖(Depen...
分类:
其他好文 时间:
2015-02-24 13:45:49
阅读次数:
151
Time Limit:1000MS Memory Limit:32768KBDescription?A number sequence is defined as follows:f(1) = 1, f(2) = 1, f(n) = (A * f(n - 1) + B * f(n - 2)) mod...
Given a strings, partitionssuch that every substring of the partition is a palindrome.Return the minimum cuts needed for a palindrome partitioning ofs...
分类:
其他好文 时间:
2015-02-24 13:43:16
阅读次数:
150
1.介绍在传统关系型数据库里,视图有时也被称作虚表,是基于特定SQL结果集的虚拟数据表。在有些场合会变得很方便,例如:原有系统重构,旧的数据表A和B已经被拆分和合并到数据表C、D、F里面,为了实现平滑迁移不影响对外数据业务,可以分别创建和原有数据表A和B一致的视图G和H,再实现数据层升级,不影响现有...
分类:
数据库 时间:
2015-02-24 13:45:17
阅读次数:
145
FileStream对于在文件系统上读取和写入文件非常有用,FileStream缓存输入和输出,以获得更好的性能。FileStream对象表示在磁盘或网络路径上指向文件的流。这个类提供了在文件中读写字节的方法,但经常使用StreamReader或StreamWriter执行这些功能。这是因为File...
分类:
其他好文 时间:
2015-02-24 13:43:55
阅读次数:
231
求N个数的最大公约数使用 “辗转相除法” 计算2个数的最大公因数: 1 int GCD_2(int nNum1, int nNum2) 2 { 3 if (nNum1 > nNum2) 4 { 5 nNum1 = nNum1 ^ nNum2; 6 nN...
分类:
其他好文 时间:
2015-02-24 13:43:34
阅读次数:
127
Radar InstallationTime Limit:1000MSMemory Limit:10000KTotal Submissions:56826Accepted:12814DescriptionAssume the coasting is an infinite straight line...
分类:
其他好文 时间:
2015-02-24 13:42:33
阅读次数:
102