普通排序:直接分配一个同等大小的数组,反向copy即可.char* Reverse(char*
s){ //将q指向字符串最后一个字符 char* q = s ; while( *q++ ) ; q -= 2 ; //分配空间,存储逆序后的字符串。
char* p = newchar[sizeof(...
分类:
其他好文 时间:
2014-05-12 16:30:14
阅读次数:
338
目录1)基本2)数学函数3)rownum4)分页5)时间处理6)字符函数7)to_number8)聚合函数9)学生选课10)图书馆借阅基本--新建表:create
table table1( id varchar(300) primary key, name varchar(200) not nul...
分类:
数据库 时间:
2014-05-12 16:11:47
阅读次数:
590
一.内存对齐的初步讲解内存对齐可以用一句话来概括:“数据项只能存储在地址是数据项大小的整数倍的内存位置上”例如int类型占用4个字节,地址只能在0,4,8等位置上。例1:#include
struct xx{ char b; int a; int c; char d;};int main(){ st...
分类:
其他好文 时间:
2014-05-10 19:52:54
阅读次数:
323
import android.app.AlertDialog;import
android.content.Context;import android.content.DialogInterface;import
android.text.TextUtils;import android.widg...
分类:
移动开发 时间:
2014-05-06 00:07:01
阅读次数:
307
技术要点一个存储过程包括名字、参数列表,以及可以包括很多SQL语句的SQL语句集。下面为一个存储过程的定义过程:create procedure
proc_name (in parameter integer)begindeclare variable varchar(20);if paramete...
分类:
数据库 时间:
2014-05-06 00:04:50
阅读次数:
433
Window --> Preferences --> General -->
Appearance --> Colors and Fonts --> Basic --> Text Font --> Change
分类:
系统相关 时间:
2014-05-05 23:44:47
阅读次数:
457
查询数据简单的查询 1 create table stu_info 2 ( 3 sno int
not null 4 ,sname varchar(20) not null 5 ,sex varchar(2) not null 6 ...
分类:
数据库 时间:
2014-05-05 23:35:08
阅读次数:
618
C++开发的项目难免会用到STL的string,使用管理都比char数组(指针)方便的多,但在得心应手的使用过程中也要警惕几个小陷阱,避免我们项目出bug却迟迟找不到原因。1.
结构体中的string赋值问题直接通过一个例子说明,下面的例子会输出什么:#include #include #i...
分类:
编程语言 时间:
2014-05-05 23:33:45
阅读次数:
413
Dijkstra。 1 #include 2 #include 3 4 #define INF
0xfffffff 5 6 int map[105][105]; 7 int dp[105]; 8 char visit[105]; 9 10 int
main() {11 int n, ...
分类:
其他好文 时间:
2014-05-05 22:34:42
阅读次数:
406