当前位置: 首页 > 软件库 > 云计算 > >

Complete-Placement-Preparation

授权协议 Readme
开发语言 C/C++
所属分类 云计算
软件类型 开源软件
地区 不详
投 递 者 徐鸿达
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

�� Placement-Preparation- Complete Roadmap ��


This repository consists of all the necessary questions and their solutions required for cracking the coding rounds and technical interviews at tech companies as well. And this content will surely help you to crack your dream company. This material has been taken and combined from various different sources.It will be a complete roadmap for your placement prep.



�� Getting Started


The folders above consist of all the required questions and their solutions as well, according to each topic

These resources helped me to get an internship at my Dream company Amazon and I hope it will help you too!

I will keep on updating this repository, If I feel that anything is missing.

Let me know,if you wish to add anything else to this content.

�� The pdfs added above consist of the 500 Most asked questions on DSA in FAANG interviews- topicwise


NOTE: The links to the solutions in the pdf are provided as well, but they will work only after you download the file to your machine

�� What do I need to prepare for the interviews?

To get your dream company, you should be good in the following while facing an interview:

�� Solid Data Structures and Algorithms. Deep understanding of these subjects, how to combine them, how to find/design suitable ones for a problem, etc. This is not surprising as indeed these are the most foundational topics on which much of CS rests.

�� Strong in OOPS. OO Design and principles, subtle aspects of language, strong understanding of the language capability and limitations, its design and implementation.

�� Good understanding of OS, DBMS, Networks. These subjects were highlighted whose understanding is extremely important on being a successful software engineer for high-end work.

�� Ability to write well structured and efficient code. Ability to evaluate efficiency of the code at different levels – algo, DS, execution level (OS), hardware to reduce memory as well as time; understanding of different layers of the system, and ability to evaluate/assess the program at these different layers.


�� Picking a Language

Before anything else, you need to pick a programming language to do your interviews in.

I do support learning and writing code in different programming languages. But when it comes to the programming interview preparation, I feel it’s important to choose one language to focus your prep on and get to know it very well.

It takes some time for languages to master, and if you spend most of your time and resources on mastering algorithms, there's hardly any spare effort left to master a new language. If you are comfortable with using one of the mainstream languages, only for interviews, there is no good need to learn a new language.

Pick up a language you have worked with and you are confident with!

But if you have enough time, I'd suggest you to learn the most used languages during candidates
(this is just my suggestion, you can also go with any other language you want or you are comfortable with):
�� C++
�� Java
�� Python
�� C

Some of the languages used at various organisations as reported online:

�� Amazon: Java, Javascript, Ruby, Python, Perl sources
�� Facebook: PHP, C++, Python, Java, Perl. High regard for dynamic/scripting languages. sources
�� Google: C/C++, Java, Python, Javascript, Go sources
�� Microsoft: C++, C#, Java, Python sources

Tip: Go for the language you are comfortable with, doing any kind of problem, solving things and writing code AND also please know about the internal functionalities as well and how different data structures are implemented in it.


�� How can I best prepare for interviews?

Practice writing code in a Google doc, then running test cases on the code and optimizing it. Below are some materials that will help. Inside the information there will be a few links, a video, and also a few practice problems to help you know what to expect. Here are the top notes:

You will be given a problem or puzzle to solve and you’ll need to talk about your approach and discuss the complexity of the solutions you are proposing. You will then need to code up your solution. You‘ll want to practice coding with the first 100-150 unsorted problems on LeetCode.

Always talk through your solution, explain any trade-offs you are making between time and memory and ask any questions you need to clarify the question. It is worthwhile to talk about your initial thoughts to a question, though a brute force solution will be received less well than taking time to compose a more efficient solution.


�� The sequence for studying Data Structures and Algorithms should be as follows:

1️⃣ Arrays & Matrix
2️⃣ String
3️⃣ Searching
4️⃣ Sorting
5️⃣ Hashing
6️⃣ Stack
7️⃣ Queue
8️⃣ Linked List
9️⃣ Recursion
1️⃣ 0️⃣ Backtracking
1️⃣ 1️⃣ Tree
1️⃣ 2️⃣ BST
1️⃣ 3️⃣ Heap or priority queue
1️⃣ 4️⃣ Graph
1️⃣ 5️⃣ Greedy
1️⃣ 6️⃣ Dynamic programming
1️⃣ 7️⃣ Trie


�� Technical Preparation tips:


The main areas software engineers should prepare to succeed at interview at FAANG:

�� Algorithm Complexity: It's fairly critical that you understand big-O complexity analysis. Againrun some practice problems to get this down in application.

�� Sorting: Know how to sort. Don't do bubble-sort. You should know the details of at least onen*log(n) sorting algorithm, preferably two (say, quicksort and merge sort). Merge sort can behighly useful in situations where quicksort is impractical, so take a look at it.

�� Hashtables: Arguably the single most important data structure known to mankind. You absolutelyshould know how they work. Be able to implement one using only arrays in your favoritelanguage, in about the space of one interview.

�� Trees: Know about trees; basic tree construction, traversal and manipulation algorithms.Familiarize yourself with binary trees, n-ary trees, and trie-trees. Be familiar with at least one typeof balanced binary tree, whether it's a red/black tree, a splay tree or an AVL tree, and know howit's implemented.
Understand tree traversal algorithms: BFS and DFS, and know the differencebetween inorder, postorder and preorder.

�� Graphs: Graphs are really important. There are 3 basic ways to represent a graph inmemory (objects and pointers, matrix, and adjacency list); familiarize yourself with eachrepresentation and its pros & cons. You should know the basic graph traversal algorithms:breadth-first search and depth-first search. Know their computational complexity, their tradeoffs,and how to implement them in real code. If you get a chance, try to study up on fancieralgorithms, such as Dijkstra and A*.

�� Other data structures: You should study up on as many other data structures and algorithms aspossible. You should especially know about the most famous classes of NP-complete problems,such as traveling salesman and the knapsack problem, and be able to recognize them when aninterviewer asks you them in disguise. Find out what NP-complete means.

�� Mathematics: Some interviewers ask basic discrete math questions.This is more prevalent at Google than at other companies because we are surrounded bycounting problems, probability problems, and other Discrete Math 101 situations. Spend sometime before the interview refreshing your memory on (or teaching yourself) the essentials ofcombinatorics and probability. You should be familiar with n-choose-k problems and their ilk – themore the better.

�� Operating Systems: Know about processes, threads and concurrency issues. Know about locksand mutexes and semaphores and monitors and how they work. Know about deadlock andlivelock and how to avoid them. Know what resources a processes needs, and a thread needs,and how context switching works, and how it's initiated by the operating system and underlyinghardware. Know a little about scheduling. The world is rapidly moving towards multi-core, soknow the fundamentals of "modern" concurrency constructs.

�� Coding: You should know at least one programming language really well, and it shouldpreferably be C++ or Java. C# is OK too, since it's pretty similar to Java. You will be expected towrite some code in at least some of your interviews. You will be expected to know a fair amountof detail about your favorite programming language.


�� Projects:

✔️ For examples of project you can check my other repositories here , Will be adding more projects soon!

✔️ If you are a beginner and wish to learn Data Structures and Algorithms in a fun way �� , try working on this project, It will help you clear a lot of concepts, make you confident about your skills and you'll gain better knowledge of DSA.
�� You can also contribute to the project and help the community if you wish to!


�� SOME EXTRA TIPS:

�� Coding Practice

�� LeetCode (Go to Problems -> Algorithms)
�� GeeksForGeeks
�� Hackerrank

�� General Interview Prep

�� GeeksforGeeks
�� High Scalability
�� Interview Puzzles



Will be soon adding resources for CS Fundamentals as well...

Do star, fork and share the repo to show your support, it would help others too!

Let me know your views on the repository or any changes or improvements and if you wish to contribute too at: anushkagupta20128@gmail.com or LinkedIn

❤️ Thank you all for making this repository trend at Number 11, in the worldwide trending on Github ❤️

 相关资料
  • 可以灵活地在HTML文档中的任何位置包含JavaScript代码。 但是,在HTML文件中包含JavaScript的最佳方法如下 - 脚本在 ... head>部分。 ... body>部分中的脚本。 脚本在 ... body>和 ... head>部分。 在外部文件中编写脚本,然后包含在 ... head>部分中。 在下一节中,我们将了解如何以不同方式将JavaScript放入HTML文件中。

  • Glossary chunk when the encoding function is called, it returns chunks of the same size. Data chunks which can be concatenated to reconstruct the original object and coding chunks which can be used to

  • Complete multipart upload related api supported by FDS Version: 1.0.0 /{bucketname}/{objectname} PUT Summary: 完成分片上传 Description: 组合各个分片为一个Object Parameters Name Located in Description Required Schema

  • 描述 该操作用于结束分片上传。对于同一个object的multipart upload操作,后complete的会覆盖先complete的。详细信息请参考分片上传过程解释。 Restful 接口 参考 SDK 接口 Java SDK: completeMultipartUpload go SDK: Complete_Multipart_Upload C++ SDK: completeMultipa

  • Deep Learning Specialization on Coursera Instructor: Andrew Ng Just completed Deep Learning Specialization on Coursera, using this repo to keep a record of all my completed coursework and related file

  • Given a complete binary tree, count the number of nodes. Definition of a complete binary tree from Wikipedia: In a complete binary tree every level, except possibly the last, is completely filled, and