随笔分类 - java
摘要:Dockerfile文件 ARG BASE_IMAGE=dockette/jdk8:latest FROM ${BASE_IMAGE} AS builder WORKDIR /build COPY . /build RUN --mount=type=cache,id=maven-repository
阅读全文
摘要:背景 跑项目的时候遇到 java.lang.NoSuchMethodError 错误 问题分析 `NoSuchMethodError` 错误通常是由于类路径问题导致的 代码可能依赖了不同版本的库,导致版本之间不兼容 可能是 `Maven` 依赖管理出现问题,导致无法解析依赖库 解决方案 1. 检查版
阅读全文
摘要:Source Given the root and two nodes in a Binary Tree. Find the lowest common ancestor(LCA) of the two nodes. The lowest common ancestor is the node wi
阅读全文
摘要:Source Given a binary tree, find the maximum path sum. The path may start and end at any node in the tree. Example Given the below binary tree, 1 / \
阅读全文
摘要:Source Problem Statement Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary tree is defined as a bina
阅读全文
摘要:Source Problem Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the rootnode down to
阅读全文
摘要:Source Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by level from leaf to root
阅读全文
摘要:Source Given a binary tree, return the level order traversal of its nodes' values. (ie, from left to right, level by level). Example Given binary tree
阅读全文
摘要:Source Given a binary tree, return the postorder traversal of its nodes' values. Example Given binary tree {1,#,2,3}, 1 \ 2 / 3 return [3,2,1]. Challe
阅读全文
摘要:Source Given a binary tree, return the inorder traversal of its nodes' values. Example Given binary tree {1,#,2,3}, 1 \ 2 / 3 return [1,3,2]. Challeng
阅读全文
摘要:Source Given a binary tree, return the preorder traversal of its nodes' values. Note Given binary tree {1,#,2,3}, 1 \ 2 / 3 return [1,2,3]. Example Ch
阅读全文
摘要:Source Problem Remove all elements from a linked list of integers that have value val. Example Given 1->2->3->3->4->5->3, val = 3, you should return t
阅读全文
摘要:Source Problem Given a linked list, swap every two adjacent nodes and return its head. Example Given 1->2->3->4, you should return the list as 2->1->4
阅读全文
摘要:Source Problem Given a list, rotate the list to the right by k places, where k is non-negative. Example Given 1->2->3->4->5 and k = 2, return 4->5->1-
阅读全文
摘要:Problem Statement Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set.
阅读全文
摘要:Source Implement an algorithm to delete a nodein the middle of a singly linked list, given only access to that node. Example Given 1->2->3->4, and nod
阅读全文
摘要:Source Given a singly linked list of characters, write a function that returns true if the given list is palindrome, else false. 题解1 - 使用辅助栈 根据栈的特性(FI
阅读全文
摘要:Source Sort a linked list using insertion sort. A graphical example of insertion sort. The partial sorted list (black) initially contains only the fir
阅读全文
摘要:Source Sort a linked list in O(n log n) time using constant space complexity. 题解1 - 归并排序(链表长度求中间节点) 链表的排序操作,对于常用的排序算法,能达到 O(nlogn) 的复杂度有快速排序(平均情况)、归并排
阅读全文
摘要:Source A linked list of length n is given such that each node contains an additional random pointer, which could point to any node in the list, or nul
阅读全文

浙公网安备 33010602011771号