C语言实现快排
摘要:#include void swap(int *pa, int *pb){ int t = *pa; *pa = *pb; *pb = t;}int partion(int *array, int begin, int end){ if (array == NULL || b...
阅读全文
C语言实现双向循环链表
摘要:#include #include #include struct list_head { struct list_head *next, *prev;};#define list_entry(ptr, type, member) \ (type *)( (char *)p...
阅读全文
mysql插入数据后返回自增ID的方法
摘要:mysql和oracle插入的时候有一个很大的区别是,oracle支持序列做id,mysql本身有一个列可以做自增长字段,mysql在插入一条数据后,如何能获得到这个自增id的值呢?方法一是使用last_insert_id?1mysql> SELECT LAST_INSERT_ID();产生的ID ...
阅读全文
golang flag包简单例子
摘要:package mainimport ( "flag" "fmt")var workers int;func main() { flag.IntVar(&workers,"r", 1, "concurrent processing ,default 1 .") flag.Parse(...
阅读全文