有沒有複雜度為O(n)的二維數組合併去重演算法
有沒有複雜度為O(n)的二維數組合併去重演算法
<code class="php">$a = [ ['id'=>1], ['id'=>2], ['id'=>3], ['id'=>4], ['id'=>5], ['id'=>6] ]; $b = [ ['id'=>5], ['id'=>6], ['id'=>7], ]; $c = [ ['id'=>8], ['id'=>9] ]; function array_unique_merge() { $params = func_get_args(); $result = []; $hashmap = []; $arr_count = count($params); for($i = 0; $i<$arr_count; $i++) { foreach($params[$i] as $key => $val) { $md5 = md5(json_encode($val)); if (!isset($hashmap[$md5])) { $hashmap[$md5] = true; $result[] = $val; } } } return $result; } print_r(array_unique_merge($a, $b, $c));</code>
我只是貼出來一下我的想法可以這麼做。如果n
指的是所有陣列的元素數量總和。
這個必須要用2循環,對n的定義應該是多個關聯數組的元素總和,雙循環就算是O(n)了
serialize以後當作hash比較,這個思路呢?手機我就不寫程式了…