#自定义函数:import ospath="D:\\Temp_del\\a"def gci (path): parents = os.listdir(path) for parent in parents: child = os.path.join(path,parent)...
分类:
编程语言 时间:
2014-07-07 10:08:15
阅读次数:
343
string有个成员函数,assign()可以这样:1 string str;2 str.assign(temp, sizeof(temp));
分类:
其他好文 时间:
2014-07-02 17:23:54
阅读次数:
229
perl treat 0 false, non 0 ture.print "false\n" if 0;print "false\n" if 0;------------------------tureperl treat string empty is false.my $temp = "";pr...
分类:
其他好文 时间:
2014-07-02 00:41:06
阅读次数:
195
1. 现象使用Cacti监控,有关于临时表的一个图形可以看到正在使用的临时表Active Temp Tables的数量非常大,并且在非工作时间,也维持在400个左右。感觉非常奇怪,所以追查下!2. 探索首先,先验证下Cacti数据是否准确,已知Cacti数据是从SQLServer的sys.dm_os...
分类:
数据库 时间:
2014-07-01 21:36:47
阅读次数:
389
--==========================================================================在博客园看到一篇文章《SQLServer Temp tables 数据疑问》,文章中问道在没有任何负载情况下,还有大量的临时表,这是为什么?--==...
分类:
数据库 时间:
2014-07-01 18:44:42
阅读次数:
269
#includevoid main(){const int count = 5;//定义数量struct student{char name[80];float math,eng;float aver;}stu[count],temp;//输入for (int i = 0; i stu[sub].a...
分类:
编程语言 时间:
2014-07-01 13:32:56
阅读次数:
257
/**
* 水仙花数
* */
public class Daffodil {
public static void main(String[] args) {
int max = 9999 ;
int min = 10 ;
for(int x=min;x<max;x++){
String temp = String.valueOf( x ) ;
int ...
分类:
其他好文 时间:
2014-07-01 11:27:48
阅读次数:
201
sybase的基本框架
sybase数据库由系统数据库、用户数据库、数据库设备和辅助文件组成。
1、 系统数据库
sybase数据库是多个数据库结构的数据库管理系统。分为系统数据库和用户数据库。
系统数据库是在安装的时候自动创建的,包括一下内容:
master数据库:全面控制和管理用户数据库及sybase上的一切操作temp数据库:为临时表和其他临时工作空间提供一个存储区...
分类:
数据库 时间:
2014-06-30 08:48:06
阅读次数:
204
题目链接:http://poj.org/problem?id=2299
题目大意:求出排序过程中的最小交换次数
利用归并排序的分治算法解决此题。
代码:
#include
#include
#include
#define N 500001
using namespace std;
int a[N];
int temp[N];
long long ans;
void merge(in...
分类:
其他好文 时间:
2014-06-30 08:18:11
阅读次数:
230
看下面这段代码:#-*-coding:utf-8-*-importcopyclassPresent(object):def__init__(self,str_cmd):self._str_cmd=str_cmdprint"进入Present时的地址:",id(self._str_cmd)defset_value(self):temp="test_cmd"self._str_cmd=copy.deepcopy(temp)defget_value(self):returnself._s..
分类:
编程语言 时间:
2014-06-29 21:38:46
阅读次数:
318