1 repo
Educational summaries of fundamental computer science concepts for interview review.
Distinguishing note: Focuses on general computer science theory review for interviews, distinct from specific algorithm or database practice.
Explore 1 awesome GitHub repository matching education & learning resources · Computer Science Interview Guides. Refine with filters or upvote what's useful.
This project is a community-driven knowledge base and career development platform designed to support students and aspiring software engineers in mastering technical domains. It functions as a structured educational framework that aggregates personal study notes, interview insights, and curated learning materials into a unified, searchable repository. By centralizing these resources, the platform facilitates peer-to-peer skill acquisition and provides a clear roadmap for navigating complex computer science subjects. The platform distinguishes itself through experience-driven content synthesis
# 1、 先来先服务 first-come first-serverd(FCFS) 非抢占式的调度算法,按照请求的顺序进行调度。 有利于长作业,但不利于短作业,因为短作业必须一直等待前面的长作业执行完毕才能执行,而长作业又需要执行很长时间,造成了短作业等待时间过长。 ### # 2、 短作业优先 shortest job first(SJF) 非抢占式的调度算法,按估计运行时间最短的顺序进行调度。 长作业有可能会