摘要:
封装这个我们可以从字面上来理解,简单来说就是包装的意思,专业点就是信息隐藏。 是指利用抽象数据类型将数据和基于数据的操作封装在一起,使其构成一个不可分割的独立实体,数据被保护在抽象数据类型的内部,尽可能地隐藏内部的细节,只保留一些对外接口使之与外部发生联系。 也就是说用户是无需知道对象内部的细节(当 阅读全文
摘要:
https://leetcode.com/problems/longest substring without repeating characters/ public class Solution { public int lengthOfLongestSubstring(String s) { 阅读全文
摘要:
https://leetcode.com/problems/add two numbers/ 阅读全文
摘要:
地址:https://leetcode.com/problems/two sum/ 本题使用HashMap来处理 public class Solution { public int[] twoSum(int[] nums, int target) { HashMap map = new HashM 阅读全文