看板 [ Ruby ]
討論串[問題] linklist的用法?
共 2 篇文章
首頁
上一頁
1
下一頁
尾頁

推噓1(1推 0噓 1→)留言2則,0人參與, 最新作者skyboy (yes i do...)時間18年前 (2006/12/19 00:16), 編輯資訊
1
0
0
內容預覽:
想請問一下. ruby在linklist的用法?. 查了一下好像都沒有看到相關的資料. ex:. struct item{. int num;. item *parent;. item *next;. };. ruby有類似用struct和pointer去做linklist的方法嗎?. --.

推噓1(1推 0噓 0→)留言1則,0人參與, 最新作者polarpolar (破啦貝爾)時間18年前 (2006/12/21 07:55), 編輯資訊
0
0
0
內容預覽:
真要做的話,就只能用 class 啦. class Node. attr_accessor :data, :parent, :next. def initialize(initValue). @data = initValue. end. end. 至於在 LinkedList 裡面實作就會類似這樣
(還有267個字)
首頁
上一頁
1
下一頁
尾頁