Last edited: 3/24/2025 Time complexity: The efficiency of code Time complexity is one of the main ways algorithms in computer science are analyzed. In general, how efficient an algorithm is is based on the number of elementary operations the algorithm performs....
Algorithms are one of the most important topics in Computer Science. An upcoming article involves an Object-Oriented Programming design pattern called the composite design pattern. The composite design pattern involves a data structure called a Tree. A data structure...
What is Object-oriented programming? Objected-oriented programming(OOP) is a complicated topic that whole textbooks can be written about. OOP has simplified coding to a significant degree and is now essentially a staple of modern computer programming. In short,...
Prototypes are a fascinating topic. In practice, they work similarly to classes in object-oriented programming languages like Java or C#. However, they are a bit different in that, when an instance of an object is created, that instance of the object doesn’t...
This blog post explains what many blog posts and articles online that can be found with a google search are going to state. The intended audience for this blog post is not professional computer programmers or those trying to learn to program in programming languages...
I read an article about Microsoft working on updating their “Bing” search engine multiple times a day. Not to long ago the article stated that Bing was only updating the Search Engine once a month. That kind of improvement speaks volumes on how hard...