可可西

10 2011 档案

二叉树遍历算法
摘要:1. 前序/中序/后序遍历(递归实现)// 前序遍历void BT_PreOrder(BiTreePtr pNode){ if (!pNode) return; visit(pNode); BT_PreOrder(pNode->left); BT_PreOrder(pNode->right); }// 中序遍历void BT_PreOrder(BiTreePtr pNode){ if (!pNode) return; BT_PreOrder(pNode->left); visit(pNode); BT_PreOrder(p... 阅读全文

posted @ 2011-10-11 19:46 可可西 阅读(2028) 评论(0) 推荐(2) 编辑

香港理工大学ASSIST2011会议(2011-09-30)
摘要:时间(2011.9.30)会议报告单位09:00 ~ 09:20Opening CeremonyLSGI / PolyU09:20 ~ 09:45Applying Mobile Mapping System (MMS) in GIS ApplicationsEsri China (Hong Kong)09:45 ~ 10:10GeoScope: A Full 3D Geospatial Information System PlatformWuhan University, China10:10 ~ 10:35Recent Development of Location-based a... 阅读全文

posted @ 2011-10-10 15:49 可可西 阅读(535) 评论(0) 推荐(1) 编辑

导航