- 博客(10)
- 收藏
- 关注
原创 coding----1wcods----坚持第9天----1807行
/************************************************************************* > File Name: binary_sort_tree.c > Author: Michael.Th.Zhang > Mail: muge0913@sina.com > Creat
2014-01-05 01:48:03 299
原创 coding----1wcods----坚持第9天----1737行
#include int main() { unsigned int a = 0x12345678; unsigned char i = (unsigned char)a; char *b = (char *)&a; printf("%d %d\n",i ,*b); b++; //x86是小端存储的 printf("%x %x\n",i
2014-01-03 19:27:48 349
原创 coding----1wcods----坚持第8天----1316行
/************************************************************************* > File Name: mini_cost_span_tree_sprim.c > Author: Michael.Th.Zhang > Mail: muge0913@sina.com
2013-12-31 00:47:14 502
原创 coding----1wcods----坚持第7天----1152行
#include int main() { int x, y, z; x = 2; x *= (y=z=5); printf("%d\n",x); z = 3; x == (y=z); printf("%d\n",x); x = (y==z); printf("%d\n",x); x = y&z; pri
2013-12-30 01:31:48 431
原创 coding----1wcods----坚持第6天----988行
#include /* 顶点类型*/ typedef char vertex_type; /* 边界类型,存放权重或顶点关系*/ typedef int edge_type; #define MAXVERTEX (1000) /* 区分权重,代表无穷大*/ #define INFINITY (65535) typedef struct { /* 顶点表*/ vertex_ty
2013-12-26 23:35:21 367
原创 coding----1wcods----坚持第5天----758行
#include #include #include #include int main(int argc, char *argv[]) { if (argc == 1) { fprintf(stderr, "usage: %s [ ...]\n", argv[0]); exit(1); }else { int i; for (i = 1; i < argc; ++
2013-12-25 23:28:41 284
原创 coding----1wcods----坚持第4天----635行
#include #include #include typedef char elem; typedef enum {link,thread} pointthread; typedef struct binary_tree_node { elem data; pointthread ltag, rtag; struct binary_tree_node *lchild, *
2013-12-25 00:34:40 284
原创 coding----1wcods----坚持第3天----352行
#include #include void function(int * pint) { pint = (int *)malloc(sizeof(int)); *pint = 10; } int main () { int tst; function(&tst); printf("%d\n",tst); return 0; } #includ
2013-12-23 01:31:00 301
原创 coding----1wcods----坚持第2天----239行
#include int main(void) { int sum = 0, i = 0; char input[5]; /* 测试段错误 */ // int man = 0; // scanf("%d", man); while (1) { scanf("%s"
2013-12-22 00:57:55 259
原创 coding----1wcods----坚持第1天----111行
/************************************************************************* > File Name: operation.c > Author: Michael.Zhang > Mail: muge0913@sina.com > Created Time: F
2013-12-21 00:29:42 343
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人