2024 iThome 鐵人賽
Share More Gain More
佛心分享-刷題不只是刷題
選手 27 文章 760
今天來解YKL31(UVA10268):498' 498' 計算多項式的微分並把x代進去,求多項式全部的和 就像下圖題目解釋的coef=>an-i=&g...
原文題目 Design a stack that supports push, pop, top, and retrieving the minimum ele...
1382. Balance a Binary Search Tree 給定一個二叉搜索樹 (BST),你的目標是將其轉換為一棵高度平衡的二叉搜索樹。高度平衡的意...
這道題要求我們對一棵二元樹進行層次遍歷,也就是按照樹的層級順序,從左到右依次訪問每一層的節點,並將每層的節點值作為一個子清單存入結果中。 題目: 給定一棵二元樹...
You are given a binary string s. In one second, all occurrences of "01&quot...
解題程式碼 var RandomizedSet = function () { this.indexMap = new Map(); this.valu...