摘要:
#include #include #include typedef struct list LIST; struct list { int data; struct list *next; }; void print_list(struct list *p) { struct list *head = p; while (head) ... 阅读全文
摘要:
字符串操作 : 1. set key value set num 11 2 . get key get num > 11 3 . INCR key INCR num >12 如果没有这个key则新增加一个为0的key,如果这个key不是整数那么报错 3 .DECR key 4. INCRBY key 阅读全文