上一页 1 ··· 10 11 12 13 14

2012年5月22日

二叉树的后续非递归遍历

摘要: void TraverseTree(BTree BT){ StackTree S; StackTag tag; BTree p=BT; while (p!=NULL||!IsEmpty(S)) { while (p) { push(S,p); push(tag,0); p=p->pLchild; } if (Top(S)->pRchild==NULL||Top(tag)==1) { BTree temp=P... 阅读全文

posted @ 2012-05-22 17:54 为梦飞翔 阅读(1290) 评论(0) 推荐(1)

2012年5月15日

[zz http://www.cnblogs.com/oldfeel/archive/2012/05/15/2501290.html] android 录像/打开video文件

摘要: 先建立录像窗口 map_video.xml<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" > <SurfaceView android:id=&quo 阅读全文

posted @ 2012-05-15 21:28 为梦飞翔 阅读(1061) 评论(2) 推荐(0)

2012年2月22日

android中颜色参考

摘要: 各种颜色值,方便查找<Button android:id="@+id/button01" android:text="预览" android:textColor="@drawable/red" android:layout_width="fill_parent" android:layout_height="50dip" android:background="@drawable/btn_toggle_on" android:layout_marginTop=" 阅读全文

posted @ 2012-02-22 14:23 为梦飞翔 阅读(557) 评论(0) 推荐(0)

上一页 1 ··· 10 11 12 13 14

导航