# Data structures and algorithms

* List-based data structures
  * List
  * Array
  * Python List
  * Linked List
  * Queue, Stack&#x20;
* Set, Map, and hashing
* Bit manipulation
* Tree - one of the most popular topics at big tech interviews
  * Tree algorithms
    * Tree traversal (BFS, DFS)
    * Search and delete
    * Insert
  * Specialized trees
    * Binary Search and Binary Search Tree
    * Heaps - one of the most popular topics at big tech interviews
    * Heapify and HeapSort
* Graph
  * BFS & DFS for graphs, Adjacency matrix
* Computation complexity and asymptotic notation
* Basic sorting algorithms
  * Insertion Sort
  * Selection Sort
  * Bubble Sort
  * Merge Sort
* Intermediary algorithms
  * Recursion, dynamic programming, backtracking - popular at Google
  * Advanced sorting algorithms: Radix Sort, QuickSort

In addition to that in coding interviews, you will get problems that require mathematical calculations (including basics of statistics and geometry).

Topics we recommend deprioritizing while preparing for interviews:

1. Sweep line algorithm
2. Dijkstra's algorithm

Most recommended resources:

* [Google’s Intro to Data Structures and Algorithms course on Udacity](https://www.udacity.com/course/data-structures-and-algorithms-in-python--ud513). It is focused on helping you pass a Google interview.
* [Data Structures and Algorithms Specialization](https://www.coursera.org/specializations/data-structures-algorithms). This was most recommended by Outtalent graduates.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.outtalent.com/guides/common-data-structures-and-algorithms.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
