RosettaCodeData/Task/Singly-linked-list-Element-insertion/Sidef/singly-linked-list-element-insertion.sidef
2016-12-05 23:44:36 +01:00

18 lines
257 B
Text

func insert_after(a,b) {
b{:next} = a{:next};
a{:next} = b;
}
var B = Hash.new(
data => 3,
next => nil, # not a circular list
);
var A = Hash.new(
data => 1,
next => B,
);
var C = Hash.new(
data => 2,
);
insert_after(A, C);