Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix a hodgepodge of things #5

Merged
merged 4 commits into from
Oct 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions graphs/graph_traversals.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ def breadth_first_search(graph, start):

**Example interview question using BFS:**

* [Clone an undirected graph](https://www.geeksforgeeks.org/clone-an-undirected-graph/)


**Runtime**: O(V + E)

Expand Down
2 changes: 1 addition & 1 deletion graphs/top_sort.md → graphs/topological_sort.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Introduction
## Introduction to Topological Sorting
Aside from DFS and BFS, the most common graph concept that interviews will test is topological sorting. Topological sorting produces a linear ordering of nodes in a directed graph such that the direction of edges is respected.

A **topological sort** is an ordering of nodes for a directed acyclic graph (DAG) such that for every directed edge _uv_ from vertex _u_ to vertex _v_, _u_ comes before _v_ in the ordering.
Expand Down
3 changes: 2 additions & 1 deletion hash_tables/hash_tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ address_book.get("Bob")
'111-222-3333'
```

Hash tables are very efficient â“ their insertion, deletion, and get operations take, on average, constant time.
Hash tables are very efficient. Operations such as insertion, deletion, and get take, on average, constant time.

## How it works:
### Hash Codes
Internally,a hash table stores its values in an array. A special **hash function** is utilized to convert each key into a code, which is then converted into an index into the underlying array. This hash function has a hard requirement to return the same hash code for equal keys.
Expand Down
2 changes: 2 additions & 0 deletions strings_arrays/binary_search.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
### Introduction

Binary search is a technique for efficiently locating an element in a sorted list. Searching for an element can done naively in **O(n)** time by checking every element in the list, but binary search's optimization speeds it up to **O(log n)**. Binary search is a great tool to keep in mind for array problems.

Algorithm
Expand Down