上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 29 下一页
摘要: JAVA: class WordDictionary { private Node head; /** * Initialize your data structure here. */ public WordDictionary() { this.head = new Node(null); } 阅读全文
posted @ 2021-01-03 18:30 牛有肉 阅读(92) 评论(0) 推荐(0) 编辑
摘要: JAVA 实现: class Trie { private Node head; /** * Initialize your data structure here. */ public Trie() { this.head = new Node(); } /** * Inserts a word 阅读全文
posted @ 2021-01-03 16:08 牛有肉 阅读(93) 评论(0) 推荐(0) 编辑
摘要: JAVA: public List<List<String>> suggestedProducts(String[] products, String searchWord) { Node head = initTree(products); List<List<String>> reList = 阅读全文
posted @ 2021-01-03 00:07 牛有肉 阅读(132) 评论(0) 推荐(0) 编辑
摘要: //获取网络文件转 base64 public String fileToBase64(String urlStr) { int byteread = 0; String total = null; byte[] totalbyte = new byte[0]; InputStream inStre 阅读全文
posted @ 2020-12-29 00:02 牛有肉 阅读(1845) 评论(0) 推荐(0) 编辑
摘要: 通俗地讲,当声明一个函数时,局部作用域一级一级向上包起来,就是作用域链。 1.当执行函数时,总是先从函数内部找寻局部变量。 2.如果内部找不到(函数的局部作用域没有),则会向创建函数的作用域(声明函数的作用域)寻找,依次向上。 比如在闭包中可以直接使用外部函数内定义的变量,这也是闭包的本质:闭包函数 阅读全文
posted @ 2020-12-27 18:50 牛有肉 阅读(354) 评论(0) 推荐(0) 编辑
摘要: 括号先后成对出现,适合使用栈结构进行处理。 JAVA : public final String minRemoveToMakeValid(String s) { if (s == null || s.length() == 0) return ""; StringBuilder sb = new 阅读全文
posted @ 2020-12-25 22:36 牛有肉 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 1.MVVM 模型 MVVM旨在利用WPF中的数据绑定函数,通过从视图层中几乎删除所有GUI代码(代码隐藏),更好地促进视图层开发与模式其余部分的分离。不需要用户体验(UX)开发人员编写GUI代码,他们可以使用框架标记语言(如XAML),并创建到应用程序开发人员编写和维护的视图模型的数据绑定。角色的 阅读全文
posted @ 2020-12-23 21:36 牛有肉 阅读(662) 评论(0) 推荐(0) 编辑
摘要: 动态规划,递归表示: public final int maxTurbulenceSize(int[] A) { Map<Long, Integer> cache = new HashMap<Long, Integer>(); int an = 0; for (int i = 0; i < A.le 阅读全文
posted @ 2020-12-17 10:32 牛有肉 阅读(87) 评论(0) 推荐(0) 编辑
摘要: JAVA 实现,基于红黑树: class TimeMap { Map<String, TreeMap<Integer, String>> map = new HashMap<String, TreeMap<Integer, String>>(); /** * Initialize your data 阅读全文
posted @ 2020-12-15 21:51 牛有肉 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 通过 ASC 码计数进行子集判断,JAVA: public final List<String> wordSubsets(String[] A, String[] B) { List<String> reList = new LinkedList<String>(); int[] bChars = 阅读全文
posted @ 2020-12-12 22:32 牛有肉 阅读(97) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 29 下一页