05 2014 档案

摘要:/* 2014年5月21日 10:01:09 位运算符和逻辑运算符 */ int i = 5, k = 21; // 位运算符:& 按位于 printf("%d\n", i&k);//5,分别把这个两个数的二进制对比。只有同位两个数都是1,那么该位就为1,否则为0;例如:1&0=0,0&... 阅读全文
posted @ 2014-05-21 12:30 xz55 阅读(146) 评论(0) 推荐(0) 编辑
摘要:#include "stdafx.h"#include //声明函数//创建一个链表struct Node * create_list(void);//遍历链表中的内容void traverse_list(struct Node *);//链表的结构体struct Node{ //数据域 int d... 阅读全文
posted @ 2014-05-21 12:15 xz55 阅读(139) 评论(0) 推荐(0) 编辑