摘要: 在E盘下有个aa.py文件。我们可以建立一个脚本:1 import py_compile2 py_compile.compile(r"E:\aa.py")可以将aa.py编译成aa.pyc,放在相同的目录下。 阅读全文
posted @ 2014-04-07 17:34 _level_ 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 十字链表法的创建: 1 typedef struct OLNode 2 { 3 int row,col; 4 int value; 5 struct LONode *right,*down; 6 }OLNode,*OLink; 7 8 typedef struct 9 {10 OLink *row_head,*col_head;11 int m,n,len;12 }CrossList;13 14 void CreatCrossList(CrossList *M)15 {16 int m,n,t;17 scanf("%d,%d,%d",&... 阅读全文
posted @ 2014-04-07 17:16 _level_ 阅读(1238) 评论(0) 推荐(0) 编辑