Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Update README.md#36

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
amejiarosario merged 1 commit intoamejiarosario:masterfrombhagatapoorva:master
Oct 31, 2019
Merged
Changes fromall 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
5 changes: 4 additions & 1 deletionREADME.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -226,11 +226,13 @@ they take different time to complete.
Use Arrays when…
- You need to access data in random order fast (using an index).
- Your data is multi-dimensional (e.g., matrix, tensor).
- when there is a limit on memory as the requirement of memory is less due to actual data being stored within the index in the array.

Use Linked Lists when:
- You will access your data sequentially.
- You want to save memory and only allocate memory as you need it.
- You want constant time to remove/add from extremes of the list.
- when size requirement is unknown - dynamic size advantage

---

Expand DownExpand Up@@ -394,7 +396,7 @@ From unbalanced BST to balanced BST

---

####[Never get stuck solving a problem with7 simple steps](book/part04-algorithmic-toolbox.asc)
####[Never get stuck solving a problem with8 simple steps](book/part04-algorithmic-toolbox.asc)

1. Understand the problem
1. Build a simple example (no edge cases yet)
Expand All@@ -403,6 +405,7 @@ From unbalanced BST to balanced BST
1. Optimize the solution
1. Write Code, yes, now you can code.
1. Test your written code
1. Analyse the complexity, both space and time and make sure to optimise further.

Full details[here](book/part04-algorithmic-toolbox.asc)

Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp