Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in data-structures

What if we change the number of hops of slow and fast pointer while finding the loop in a linked list

What data structure for O(1) random insertion/deletion and O(1) random access?

Data structure alignment difference in Go and C

Why do we need for ParHashMap from Scala while there is ConcurrentHashMap from Java

How to create the following data structure in a NoSQL environment

Efficient data structure for storing 3d points

Why do we have double hashing function as [(hash1(key) + i * hash2(key)) % TABLE_SIZE] but not simply as [(i * hash2(key)) % TABLE_SIZE]?

Tree returning the maximum value

Why is the BigO of adjacency list for a graph is (V + E) and not (V^2)?

How to store this structure (list of lists of integers) in Matlab?

matlab data-structures

When are linked lists preferred over lists?

Could kd-tree build with dot-product?

How is the memory of the array of segment tree 2 * 2 ^(ceil(log(n))) - 1?

c - Error: "incomplete type is not allowed" , IAR compiler

Difference between multimap and unordered map

Special case to grab the headers for a DictReader in Python

Why Triple Linked List does not exist?

data-structures

Best way to retrieve K largest elements from large unsorted arrays?

Sorting elements in array based on their sum of number

Inserting a value in a ordered sequence in O(ln n)