2014年3月13日

【DataStructure In Python】Python模拟二叉树

摘要: 使用Python模拟二叉树的基本操作,感觉写起来很别扭。最近做编译的优化,觉得拓扑排序这种东西比较强多。近期刷ACM,发现STL不会用实在太伤了。决定花点儿时间学习一下STL。Boost其实也很强大。关于Python最近没什么时间搞了,忙着复试了。不过,挺喜欢这语言的。复试完继续大战PythonChallenge。 1 #! /usr/bin/env python 2 # DataStrucure Tree 3 4 import sys 5 6 class BTNode: 7 8 def __init__(self, data, lchild=None, ... 阅读全文

posted @ 2014-03-13 22:29 Bombe 阅读(554) 评论(0) 推荐(0) 编辑

【HDOJ】2093 考试排名

摘要: 水题,考察结构体以及格式化输出,马上就要机试了,这道题挺好,留下来。 1 #include 2 #include 3 #include 4 5 #define MAXNUM 10005 6 7 typedef struct { 8 int ac; 9 int time;10 char name[12];11 } student_st;12 13 student_st students[MAXNUM];14 15 int comp(const void *a, const void *b) {16 student_st *p1 = (student_st... 阅读全文

posted @ 2014-03-13 13:47 Bombe 阅读(270) 评论(0) 推荐(0) 编辑

导航