Clojure Remove item from Vector at a Specified Location

后端 未结 8 831
无人共我
无人共我 2020-12-04 01:35

Is there a way to remove an item from a vector based on index as of now i am using subvec to split the vector and recreate it again. I am looking for the reverse of assoc fo

相关标签:
8条回答
  • 2020-12-04 01:47

    Yet another possibility which ought to work with any sequence and not bomb if the index was out of range...

    (defn drop-index [col idx]
      (filter identity (map-indexed #(if (not= %1 idx) %2) col)))
    
    0 讨论(0)
  • 2020-12-04 01:48

    subvec is probably the best way. The Clojure docs say subvec is "O(1) and very fast, as the resulting vector shares structure with the original and no trimming is done". The alternative would be walking the vector and building a new one while skipping certain elements, which would be slower.

    Removing elements from the middle of a vector isn't something vectors are necessarily good at. If you have to do this often, consider using a hash-map so you can use dissoc.

    See:

    • subvec at clojuredocs.org
    • subvec at clojure.github.io, where the official website points to.
    0 讨论(0)
  • 2020-12-04 01:51

    subvec is fast ; combined with transients it gives even better results.

    Using criterium to benchmark:

    user=> (def len 5)
    user=> (def v (vec (range 0 5))
    user=> (def i (quot len 2))
    user=> (def j (inc i))
    
    ; using take/drop
    user=> (bench
             (vec (concat (take i v) (drop j v))))
    ;              Execution time mean : 817,618757 ns
    ;     Execution time std-deviation : 9,371922 ns
    
    ; using subvec
    user=> (bench
             (vec (concat (subvec v 0 i) (subvec v j len))))
    ;              Execution time mean : 604,501041 ns
    ;     Execution time std-deviation : 8,163552 ns
    
    ; using subvec and transients
    user=> (bench
             (persistent!
              (reduce conj! (transient (vec (subvec v 0 i))) (subvec v j len))))
    ;              Execution time mean : 307,819500 ns
    ;     Execution time std-deviation : 4,359432 ns
    

    The speedup is even greater at greater lengths ; the same bench with a len equal to 10000 gives means: 1,368250 ms, 953,565863 µs, 314,387437 µs.

    0 讨论(0)
  • 2020-12-04 01:56
    user=> (def a [1 2 3 4 5])
    user=> (time (dotimes [n 100000] (vec (concat (take 2 a) (drop 3 a)))))
    "Elapsed time: 1185.539413 msecs"
    user=> (time (dotimes [n 100000] (vec (concat (subvec a 0 2) (subvec a 3 5)))))
    "Elapsed time: 760.072048 msecs"
    

    Yup - subvec is fastest

    0 讨论(0)
  • 2020-12-04 01:58

    Here is a solution iv found to be nice:

    (defn index-exclude [r ex] 
       "Take all indices execpted ex" 
        (filter #(not (ex %)) (range r))) 
    
    
    (defn dissoc-idx [v & ds]
       (map v (index-exclude (count v) (into #{} ds))))
    
    (dissoc-idx [1 2 3] 1 2)
    
    
    '(1)
    
    0 讨论(0)
  • 2020-12-04 01:59

    It may be faster to get the indexes you want.

    (def a [1 2 3 4 5])
    
    (def indexes [0 1 3 4])
    
    (time (dotimes [n 100000] (vec (concat (subvec a 0 2) (subvec a 3 5)))))
    "Elapsed time: 69.401787 msecs"
    
    (time (dotimes [n 100000] (mapv #(a %) indexes)))
    "Elapsed time: 28.18766 msecs"
    
    0 讨论(0)
提交回复
热议问题