头文件:
#pragma once
#include
#include
using namespace std;
template
class SeqStack
{
public:
SeqStack(size_t sz = INIT_SZ);
~SeqStack();
public:
bool empty()const;
bool full()const;
vo...
分类:
编程语言 时间:
2015-06-01 16:58:15
阅读次数:
166
脚本原创,盗转死妈
#!/bin/bash
cmd=$1
script_name=`basename $0`
RMAN_HOME=$2/`date +%Y_%m_%d`
print_usage() {...
分类:
其他好文 时间:
2015-06-01 16:44:44
阅读次数:
171
头文件:
#pragma once
#include
#include
using namespace std;
template
class SeqStack
{
public:
SeqStack(size_t sz = INIT_SZ);
~SeqStack();
public:
bool empty()const;
bool full()const;
void s...
分类:
编程语言 时间:
2015-06-01 14:48:35
阅读次数:
312
show character set;show create database aloe;show create table book_category;show full columns from book_category;ALTER DATABASE `aloe` DEFAULT CHARAC...
分类:
数据库 时间:
2015-05-31 23:00:49
阅读次数:
194
Skip to contentSign up Sign inThis repository ExploreFeaturesEnterpriseBlog Watch 390 Star 2,538 Fork 844 StackExchange/dapper-dot-net branch: mast...
分类:
移动开发 时间:
2015-05-31 18:21:29
阅读次数:
357
AbstractIBM Rational System Architect 11.4.0.3 suite (including IBM Rational System Architect XT) released.Download DescriptionIBM Rational System Architect version 11.4.0.3 is a full product download...
分类:
其他好文 时间:
2015-05-31 15:31:21
阅读次数:
301
生产者消费者问题问题描述是:有一群生产者进程在生产产品,此产品提供给消费者去消费。为使生产者和消费者进程能并发执行,在它们之间设置一个具有n个缓冲池,生产者进程可将它所生产的产品放入一个缓冲池中,消费者进程可从一个缓冲区取得一个产品消费。利用记录型信号量semaphore mutex=1,empty=n,full=0;
item buffer[n]; //缓冲区
int in=out=0;...
分类:
系统相关 时间:
2015-05-31 14:03:38
阅读次数:
201
Problem Description
As is known to all, the blooming time and duration varies between different kinds of flowers. Now there is a garden planted full of flowers. The gardener wants to know how many ...
分类:
其他好文 时间:
2015-05-31 09:35:52
阅读次数:
119
概述??索引是数据库优化中最常用的也是最重要的手段之一。该篇看看索引的分类,使用场景,不能使用的场景等。索引分类??索引是在mysql存储引擎中实现的,而不是在服务器层实现的。索引每种存储引擎的索引不一定相同。mysql支持4种索引:
B-tree索引:最常见索引,大部分引擎都支持B树索引。
full-text索引:全文索引。
hash索引:只有memory引擎支持。
R-Tree索引:空间索引是m...
分类:
数据库 时间:
2015-05-31 09:22:17
阅读次数:
170
// Filename : list_queue.c
// Author : LupingChen
// Data : 2015.05.30
// Content : create\destory\full\empty\push
#include
#include
//定义节点数据类型
typedef struct Node {
...
分类:
其他好文 时间:
2015-05-31 01:28:02
阅读次数:
172