20170529-leetcode-582-Kill process

本文介绍了一种基于进程树结构的算法,用于确定当给定一个要终止的进程时,哪些进程会被一同终止。该算法使用广度优先搜索来遍历进程树。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1.Description

Given n processes, each process has a unique PID (process id) and its PPID (parent process id).
Each process only has one parent process, but may have one or more children processes. This is just like a tree structure. Only one process has PPID that is 0, which means this process has no parent process. All the PIDs will be distinct positive integers.
We use two list of integers to represent a list of processes, where the first list contains PID for each process and the second list contains the corresponding PPID.
Now given the two lists, and a PID representing a process you want to kill, return a list of PIDs of processes that will be killed in the end. You should assume that when a process is killed, all its children processes will be killed. No order is required for the final answer.
Example 1:
Input:
pid = [1, 3, 10, 5]
ppid = [3, 0, 5, 3]
kill = 5
Output: [5,10]
Explanation:
3
/ \
1 5
/
10
Kill 5 will also kill 10.
Note:
The given kill id is guaranteed to be one of the given PIDs.
n >= 1.
解读
给定一个进程列表,和该列表对应的父进程列表,输入要杀掉的进程,输出所有将要结束的进程

2.Solution

#代码来自leecode,简洁明了,下面做一下分析

class Solution(object):
    def killProcess(self, pid, ppid, kill):
        d = collections.defaultdict(list)
        #建立pid,ppid的对应表,如pid=[0,1,2,3,4,5],ppid=[0,1,1,1,1]
        #通过下面的代码得到map{0:[0],1:[2,3,4,5]}
        for c, p in zip(pid, ppid): d[p].append(c)

        bfs = [kill]#最后的BFS结果中第一个元素是kill
        for i in bfs: bfs.extend(d.get(i, []))#把结果的子进程添加进来
        return bfs
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值