bai_jimmy

导航

上一页 1 2 3 4 5 6 7 8 ··· 10 下一页

2016年4月19日 #

c语言:printf系列的函数

摘要: /** * stdio.h * int printf(const char *format, ...) * int fprintf(FILE *stream, const char *format, ...) * int sprintf(char *str, const char *format, 阅读全文

posted @ 2016-04-19 15:07 bai_jimmy 阅读(271) 评论(0) 推荐(0) 编辑

2016年4月15日 #

zlog学习笔记(level_list)

摘要: level_list.h /** * */ #ifndef __zlog_level_list_h #define __zlog_level_list_h zc_arraylist_t *zlog_level_list_new(void); void zlog_level_list_del(zc_a 阅读全文

posted @ 2016-04-15 17:48 bai_jimmy 阅读(411) 评论(0) 推荐(0) 编辑

zlog学习笔记(level)

摘要: level.h /** * */ #ifndef __zlog_level_h #define __zlog_level_h #include "stdio.h" #include "zc_defs.h" typedef struct zlog_level_s { int int_level; ch 阅读全文

posted @ 2016-04-15 17:46 bai_jimmy 阅读(345) 评论(0) 推荐(0) 编辑

2016年4月10日 #

zlog学习笔记(zc_hashtable)

摘要: zc_hashtable.h /** * hashtable */ #ifndef __zc_hashtable_h #define __zc_hashtable_h typedef struct zc_hashtable_entry_s { unsigned int hash_key; void 阅读全文

posted @ 2016-04-10 17:22 bai_jimmy 阅读(372) 评论(0) 推荐(0) 编辑

2016年4月9日 #

zlog学习笔记(zc_arraylist)

摘要: zc_arraylist.h /** * 实现类似列表的功能 * */ #ifndef __zc_arraylist_h #define __zc_arraylist_h #define ARRAY_LIST_DEFAULT_SIZE 32 //删除、比较两个函数类型声明 typedef void 阅读全文

posted @ 2016-04-09 09:53 bai_jimmy 阅读(219) 评论(0) 推荐(0) 编辑

2016年4月6日 #

指针问题

摘要: #include int max(int x, int y){ return x > y ? x : y; } int main(){ int x = 1, y = 2; //函数指针 int(* p_max)(int x, int y); p_max = &max; //指针数组 ... 阅读全文

posted @ 2016-04-06 10:32 bai_jimmy 阅读(128) 评论(0) 推荐(0) 编辑

2016年4月4日 #

zlog学习笔记(zc_profile)

摘要: zc_profile.h zc_profile.c 阅读全文

posted @ 2016-04-04 21:03 bai_jimmy 阅读(555) 评论(0) 推荐(0) 编辑

2016年4月1日 #

重温12年考研真题,呵呵

摘要: #include struct node{ char data; struct node *next; } NODE; struct node *find(struct node *str1, struct node *str2){ int str1_len = 0, str2_len = 0; struct node *p... 阅读全文

posted @ 2016-04-01 00:24 bai_jimmy 阅读(249) 评论(0) 推荐(0) 编辑

2016年3月22日 #

uwp项目总结

摘要: 阅读全文

posted @ 2016-03-22 22:49 bai_jimmy 阅读(136) 评论(0) 推荐(0) 编辑

2016年3月21日 #

python中的字符串操作

摘要: #!/usr/bin/python # -*- coding: UTF-8 -*- ''' str.capitalize() ''' str = 'this is a string example' print str.capitalize() ''' str.center(width[, fillchar]) ''' str = '123' print str.center(10, '0'... 阅读全文

posted @ 2016-03-21 15:47 bai_jimmy 阅读(177) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 10 下一页