Algorithms - a Debut (II) [Basic Algorithm and Data Structures Courses]
A basic algorithm course is about building up the abstract steps intended to solve a specific quandary. It introduces the going-to-be programmer to the fundamental tools mundanely utilized, namely reading from the standard input, writing on the standard output, conditional control structure, iterative control structure, and of course a trivial introduction to scalar data types (int [short], char, real [float, double], and boolean). The accompanying programming course is to concretize the aforementioned. Further, the importance of data structures (their prerequisite are the scalar data types) appear when a beginner programmer has to move to "next level": manipulating arrays. Arrays allow to gather homogeneous values within one variable at run-time . Niklaus Wirth made use of a very, very critical equation to entitle his book ( Algorithms + Data Structures = Programs ), in the 1970s already. A data structures course is supposed to introduce students to the pletho...