Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Importance of Algorithms in context of Mobile Application Development? [closed]

Is it really important to know algorithms to build mobile applications? I have strong understanding of development tools and design pattern as well as strong knowledge of OOP and MVC.

So, is it required to know hardcore algorithms to become a good mobile application developer?


I can understand that if you want to create games then YES it is obvious that we must know all the AI related algos to be competent. But I am asking for just simple data driven application building.

like image 587
TeaCupApp Avatar asked Jun 22 '12 12:06

TeaCupApp


People also ask

How algorithm is useful in the context of software development?

Explanation: In the software development the algorithm easily solved the problem like Minimum Spanning tree , shortest path etc . if algorithm is not there then we can never solved these problem. The algorithm is used in the software development to solve the dynamic problem .

What is algorithm in mobile application?

Algorithms are a set of instructions designed to solve problems. For instance, getting dressed is an everyday process we all go through, and it involves an algorithm.

What is the importance of developing mobile applications today?

Mobile apps permit the users to have functional access to products, information, process, and services that they would demand in real-time. Moreover, it enables the business to send notifications about changes in products and services or something new. Even without the internet, the apps perform simple functions.

Is Data Structures and Algorithms important for app developers?

Do I Need to learn Data Structures and Algorithms for Android Development? Yes, having the knowledge of Algorithms and Data structures is important in making efficient and highly performant Android apps. It is worth noting that you can make some basic apps without knowing much about Data Structures and Algorithms.


1 Answers

Every computer program you write implements an algorithm or a set of algorithms. If you are concerned with the quality (deliberately vague term) of your programs then you have to be concerned with the quality of your algorithms.

For example, if you want your program to be fast (which is a quality that a program might have) better choose a fast algorithm than a slow algorithm for the same problem. If you want your program to fit into a small amount of RAM (another quality factor) best choose an algorithm which operates in a small amount of RAM rather than one which gobbles it up by the GB.

So, critical knowledge for a software developer includes the knowledge of how to analyse an algorithm for speed, memory usage, and all the other quality factors you might be interested in optimising. One way of analysing an algorithm is, of course, referring to texts which tell you what you want to know.

I conclude with the assertion that yes you do need to know hardcore algorithms to be a good developer, I don't see any reason to modify my belief when it comes to mobile applications development. Of course, I don't expect you to know all about all the algorithms there might be, but the principal ones found in all the basic text books, and the ones which are specific to your application domain, hell yes you gotta know those rascals !

like image 95
High Performance Mark Avatar answered Oct 12 '22 08:10

High Performance Mark