문제

I'm trying to insert elements at the end of a list, but I'm wondering if that would be slow?

I know that to append elements in Scheme requires traversing the entire list and thus O(N) time for a list of length N. Is that also true in ML?

도움이 되었습니까?

해결책

This is true in all implementations of ML that I am aware of, though I certainly would believe that it's possible to create an implementation for which that is not the case.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top