普通排序:直接分配一个同等大小的数组,反向copy即可.char* Reverse(char*
s){ //将q指向字符串最后一个字符 char* q = s ; while( *q++ ) ; q -= 2 ; //分配空间,存储逆序后的字符串。
char* p = newchar[sizeof(...
分类:
其他好文 时间:
2014-05-12 16:30:14
阅读次数:
338
这篇对应的是习题16,读写文件
# -*- coding: utf-8 -*-
#对文件更多操作复制A文件的内容到B文件
#from sys import argv
from os.path import exists
prompt = "> "
from_file = raw_input("please input the filename where you want to copy...
分类:
编程语言 时间:
2014-05-05 12:54:02
阅读次数:
402
//继承SQLiteOpenHelper类,
public class DictionaryOpenHelper extends SQLiteOpenHelper{
public static final String DABASENAME = "dictionary";
private static final int DATABASE_VERSION = 1;
pri...
分类:
移动开发 时间:
2014-05-03 23:49:30
阅读次数:
589
If you have installed YouTrack from EXE
Distribution, then the best way to change the database location is by specifying
it via JVM property.Stop curr...
分类:
数据库 时间:
2014-05-03 23:30:08
阅读次数:
505
什么是JDBC,在什么时候会用到它?JDBC的全称是Java DataBase
Connection,也就是Java数据库连接,我们可以用它来操作关系型数据库。JDBC接口及相关类在java.sql包和javax.sql包里。我们可以用它来连接数据库,执行SQL查询,存储过程,并处理返回的结果。JD...
分类:
数据库 时间:
2014-05-03 23:18:31
阅读次数:
766
DDL :Data Definition Language (DDL) statements
are used to define the database structure or schema. Some examples:CREATE - to
create objects in the da...
分类:
数据库 时间:
2014-05-03 22:21:22
阅读次数:
410
创建数据库:
CREATE DATABASE stefan;
删除数据库:
DROP DATABASE stefan;
重命名数据库:
重命名数据库没有直接的办法。
已经不再使用的方法:
RENAME DATABASE stefan TO LCDB;
创建表格语法:
CREATE TABLE 表名称
(
列名称1 数据类型,
列名称2 数据类型,
列...
分类:
数据库 时间:
2014-05-03 21:47:22
阅读次数:
470
一、memcached简介Memcached是一款开源、高性能、分布式内存对象缓存系统,可应用各种需要缓存的场景,其主要目的是通过降低对Database的访问来加速web应用程序。它是一个基于内存的“键值对”存储,用于存储数据库调用、API调用或页面引用结果的直接数据,如字符串、对象等。m..
分类:
其他好文 时间:
2014-05-03 15:12:31
阅读次数:
304
胡乱写了一些代码/*
============================================================================
Name : sqlist.c Author :codecup Version : Copy...
分类:
其他好文 时间:
2014-05-02 17:22:31
阅读次数:
356
UIView的常见属性 1 @property(nonatomic,readonly)
UIView *superview; 2 获得自己的父控件对象 3 4 @property(nonatomic,readonly,copy) NSArray
*subviews; 5 获得自己的所有子控件对象.....
分类:
其他好文 时间:
2014-05-02 14:53:07
阅读次数:
249