Loading

摘要: 线程在 Linux 中的实现 线程机制是现代编程技术中常用的一种抽象概念。该机制提供了在同一程序内共享内存地址空间运行的一组线程。这些线程还可以共享打开的文件和其他资源。线程机制支持并发程序设计技术(concurrent programming),在多处理器系统上,它也能保证真正的并行处理(para 阅读全文
posted @ 2024-09-20 23:13 Duancf 阅读(43) 评论(0) 推荐(0)
摘要: 3.0 阅读全文
posted @ 2024-09-20 21:09 Duancf 阅读(12) 评论(0) 推荐(0)
摘要: class Solution: def searchMatrix(self, matrix: List[List[int]], target: int) -> bool: n = len(matrix) m = len(matrix[0]) row = 0 col = m-1 while row < 阅读全文
posted @ 2024-09-20 13:22 Duancf 阅读(18) 评论(0) 推荐(0)
摘要: # Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self.left = left # self. 阅读全文
posted @ 2024-09-20 00:18 Duancf 阅读(16) 评论(0) 推荐(0)