摘要: /** * 42. Trapping Rain Water * https://leetcode.com/problems/trapping-rain-water/description/ * */ class Solution { fun trap(height: IntArray): Int { 阅读全文
posted @ 2020-01-20 23:54 johnny_zhao 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 什么是序列化 在计算机科学的数据处理中,是指将数据结据或对象转换成可取用的格式(如存成文件,字节),以让后续在相同或另一台计算机中,能恢复原先状态的过程。 为什么我们需要序列化 存储/传输 IPC/RPC IPC,Inter-Process Communication,进程间通信 RPC,Remot 阅读全文
posted @ 2020-01-20 17:39 johnny_zhao 阅读(190) 评论(0) 推荐(0) 编辑