Dijkstra's Shortest Path Algorithm
An elegant algorithm for finding the shortest path between nodes in a graph.
An elegant algorithm for finding the shortest path between nodes in a graph.
Coursera Verified Certificates, License GKNAYZY4TH, October 2013
Full course write up available here
These notes were taken from the in-person course completed in 2013 and were used to get the following certs:
When a process spawns a separate process to handle some work, it invokes
the fork(2)
system call. fork(2)
duplicates the current process in …
When a parent process finishes executing before its children, the child processes are said to become orphan processes.
When this happens, the init process - the …
Zombie processes are "dead" processes. That is, processes that have finished executing and are waiting for the parent to reap them (collect information about their …