Step 1 : Learn the theory and fundamentals Understand top fundamental topics covered in data structures such as: Algorithms, Arrays, Collections, Complexity Analysis, Graphs, Hashtables, Heaps, Linked Lists, Queues, Recursion, Search, Sort, Stacks, Trees You can checkout these websites to help cover fundamentals: www.geeks4geeks.com - explains all the high level fundamentals www.beehyve.io/data-structures — student crowdsourced resources and community for any topic in CS including Data Structures Time complexity resources [BeeHyve]Time Complexity Cheat Sheet https://visualgo.net/en - has visualizations of a lot of helpful algorithms Here are more schools that have DS classes which you may find helpful: CS 226 Algorithms and Data Structures Brown CS 16 Introduction to Algorithms and Data Structures Stanford CS 166 Data Structures CMU CSE 15-211 Fundamental Data Structures and Algorithms University of Washington at St. Louis CSE 241 Algorithms a...
1. Open Terminal, run : $ sudo gedit ~/.profile 2. Append the following code to your profile PATH = ${PATH}: /home/robi/Android/Sdk /tools PATH = ${PATH}: /home/robi/Android/Sdk /platform-tools Note : Change the RED text with your android installation path. 3. Click save and run another command : $ sudo gedit ~/.bashrc 4. Add the following code : export ANDROID_HOME= /home/robi/Android/Sdk/ export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platforms-tools 5. Click Save.
Comments
Post a Comment