Public implementation of ropes in C#?

前端 未结 4 1301
南旧
南旧 2021-02-02 18:12

Is there a public implementation of the Rope data structure in C#?

4条回答
  •  伪装坚强ぢ
    2021-02-02 18:29

    Here is a public implementation of Ropes in C#, based on the immutable java implementation listed above. Note that you won't get the same polymorphism benefits as the java version because strings can't be inherited and CharSequence doesn't exist natively in C#.

提交回复
热议问题