is JOIN safe?
L1=[11,99] L2=[2,111,222] when JOINed the result is not sorted. JOIN is not safe.
There is a unique safe way to combine 2 sorted lists:
L1=[11,99] L2=[2,111,222]
L3=[11,99] INSERT(2,L3)
L3=[2,11,99] INSERT(111,L3)
L3=[2,11,99,111] INSERT(222,L3)
L3=[2,11,99,111,222]
Very inefficient. Does not exploit the fact that both lists are sorted.