1. 概念介绍
System V IPC(Inter-Process Communication)是一组在UNIX系统中用于进程间通信的机制,包括共享内存、消息队列和信号量。这些机制由System V内核提供,并且它们的存在不依赖于创建它们的进程,而是由内核管…
题目: 题解:
class Solution:def removeKdigits(self, num: str, k: int) -> str:numStack []# 构建单调递增的数字串for digit in num:while k and numStack and numStack[-1] > digit:numStack.pop()k - 1numStack.append(digit)# 如果 K >…