• 2024-07-16 15:36:15 评论了主题 咨询下append指定插入位置

    只有链表能动态插入

    golang的话可以make一个新slice(原slice长度+1),然后把要插入点前后的数据copy过去,构造新的slice。