I. Learning Teaching Material knowledge
As a programmer who has already worked, I don't think that all the professional courses in computer science (including basic courses, which I also mentioned when I was in college) are useful. In fact, for most programmers, only a few pieces of knowledge is enough. This knowledge mainly consists of three courses: data structure, compilation principle, and operating system. For most programmers, the content of other courses is not useless, but not used in actual work.
Data Structure
The importance of this course can be understood as the programmer's bible. How to describe its importance is too much. My personal point of view is as follows:
1. Understand all linear data structures, such as tables, stacks, and queues. (generalized tables are not required)
2. Basic operations and use of Binary Trees
3. In the figure, we need to know how to traverse and understand the shortest path algorithm and related concepts.
Of course, this is not enough for some programmers, because specific software development work may have different requirements. However, this knowledge is sufficient for most programmers engaged in MIS software development. There are two requirements for mastering this knowledge. The first is to complete enough exercises so that you can answer questions skillfully. The second is to use data structures to describe the actual things in actual work. It should be said that these two requirements are not too high. Pay attention to more exercises. At present, this course also has a lot of classical teaching materials, and I believe that as long as you finish learning step by step, it will be qualified.
Compilation principles
This course focuses on learning methods and ideas rather than the knowledge in the course. Because there are too few people who can engage in Compiler development after graduation. There are not many things to understand in this course. My personal views are as follows:
1. determine the use of finite and non-deterministic finite automaton
2. Implementation of lexical analysis programs
3. syntax analysis method
The embodiment of the automatic mechanism in practical application is equivalent to the state transition diagram. This tool is very important and must be mastered. When developing entitymodelstudio, the interaction part of the design interface is to first design the status transition diagram and then write the code. Otherwise, direct development will face the risk of development being out of control, at the same time, refactoring and maintenance will be quite troublesome. Therefore, this tool is extremely powerful and practical. In addition, the capability of this tool is equivalent to that of a deterministic finite automaton. However, due to its uncertainty, it is more in line with people's natural thinking habits, so it is more convenient in some design scenarios. This is very practical and attractive.
Mastering the implementation of lexical analysis programs can greatly expand development and thinking capabilities. This part may be difficult to describe theoretically, but it is easy to use in actual use, so it is worth learning. The syntax analysis program does not need to be mastered. After all, there is little chance to develop the compiler. However, the related methods and ideas hope to be understood, which can help Programmers think about problems with computers.
Operating System
There are only two things to be mastered:
1. Five basic management methods, especially memory management policies
2. Synchronization Technology of threads or processes
The operating system is complex, but the management methods described in the textbooks are relatively easy to understand. This difficulty reflects the importance of basic knowledge, which is widely used in actual development. After a good understanding, you can understand the skills for solving complex problems in a simple way. I don't need to say much about the synchronization of thread processes. Everyone knows the role of the process. If you really don't want to know it, I am very willing to believe that your reasons must be sufficient, otherwise, you will never do that.
Finally, I want to emphasize that no matter what you think about this knowledge, you may feel useless, difficult, or not interested. But if you want to be a programmer, then you must master it as much as possible.
Devstore, a mandatory website for developers
Sharing experiences with independent developers-teaching material knowledge