tree n. 特里〔姓氏〕。 n. 1.樹〔主要指喬木,也可指較大的灌木〕。 ★玫瑰可以稱為 bush, 也可以稱為 tree. 2.木料,木材;木構件;〔古語〕絞首臺;〔the tree〕(釘死耶穌的)十字架;鞋楦。 3.樹形(物),世系圖,家系 (=family tree);【數學】樹(形);【化學】樹狀晶體。 a banana tree 香蕉樹。 an axle-tree 心棒,軸料。 a boot-tree 靴楦[型]。 a saddle-tree 鞍架。 at the top of the tree 在最高地位。 tree of Buddha 菩提樹。 tree of heaven 臭椿。 tree of knowledge (of good and evil) 【圣經】知道善惡的樹,智慧之樹。 tree of life 生命之樹,生命力的源泉【植物;植物學】金鐘柏。 up a tree 〔口語〕進退兩難,不知所措。 vt. 趕(獵獸等)上樹躲避;〔口語〕使處于困境;窮追;把鞋型插入(鞋內)。
class n. 1.階級;社會等級。 2.學級;班級,年級,級,班;組;(有組織的)講習班;〔美國〕同年畢業班;【軍事】同年入伍士兵。 3.(高低、優劣的)等級;類別。 4.〔英大學〕(榮譽考試)優等;〔俚語〕高級,優秀;漂亮,優雅。 5.【生物學】(分類學的)綱;【礦物】晶族。 6.(一節)課。 the working class工人階級。 No class today. 今天沒課。 C- is over. 下課。 boycott classes 罷課。 the first [second] class頭[二]等。 high [low] class高[低]級。 There's a good deal of class about him. 他有很多優點。 He is not class enough. 他沒有什么了不起。 at the top of one's class 出類拔萃;居首要位置。 be no class 〔俚語〕不足道;無價值。 class of the field 〔美國〕比賽的優勝候補人。 get a class=obtain a class. in a class by itself 特好,出眾。 in class在上課中。 in the same class 〔美國〕同一類型的,同等的。 no class 〔俚語〕等外的,極壞的,蹩腳的〔用作表語〕。 not in the same class with 不能同…相比,無法和…相提并論,比不上…。 obtain a class=take a class 畢業考試得優等。 take a class at (Oxford) 在(牛津大學)進榮譽班。 take a class of (beginners) 擔任(初級)班(的教師)。 take classes in (history) 聽(歷史)課,選修(歷史)課程。 the classes 上層社會;知識階級。 the classes and masses 各階級和各階層。 vt. 把…分類,把…分等[分級];給…定等級,把…分組。 vi. 屬于…類[等、級、組]。 adj. -able 可分類[等級]的。 adj. -less 無階級的。
Simple binary tree class - binary search trees are useful for finding items in a list that changes infrequently 二叉搜索樹在查找經常變化的列表時是很非常有用的。
Binary tree class - a binary tree is a data structure with nodes that include no more than two linked nodes . they are often used for sorting data 二叉樹是一個具有節點的數據結構,其每個節點最多包含兩個子節點。它們經常用來排序數據。
It takes a plain javacc grammar file as input and automatically generates the following : a set of syntax tree classes based on the productions in the grammar using the visitor design pattern ; two interfaces visitor and objectvisitor ; two depth - first visitors depthfirstvisitor and objectdepthfirst ; and a javacc grammar with the proper annotations to build the syntax tree during parsing 它把普通的javacc語法文件作為輸入并自動生成下列各項:基于語法中的生成的一組語法樹類(使用visitor設計模式) ;兩個接口( visitor和objectvisitor ) ;兩個深度優先訪問器( depthfirstvisitor和objectdepthfirst ) ;和一個帶正確注釋的javacc語法(用于在解析期間構建語法樹) 。