cur
-
[LeetCode] 919. Complete Binary Tree Inserter
A complete binary tree is a binary tree in which every level, except possibly the last, is…
-
SQL Server 数据库批量备份及批量恢复脚本
测试数据库版本 SQL server 2012 批量备份脚本 设定好备份目录,以及备份文件名格式,此处我们备份目录为d:/backup 备份文件格式为{dbname}.ba…
-
203. 移除链表元素
203. 移除链表元素 给你一个链表的头节点 head 和一个整数 val ,请你删除链表中所有满足 Node.val == val 的节点,并返回 新的头节点 。 示例 1: 输…
-
LeetCode 1345. Jump Game IV
原题链接在这里:https://leetcode.com/problems/jump-game-iv/ 题目: Given an array of integers arr, yo…
-
LeetCode 1306. Jump Game III
原题链接在这里:https://leetcode.com/problems/jump-game-iii/ 题目: Given an array of non-negative in…
-
一天一个仿lodash函数实现-flatten
flatten 数组元素铺平一层 function flatten(arr){ return arr.reduce((pre, cur)=>{ return pre.conc…
-
leetcode301 删除无效的括号
思路: dfs+剪枝。 实现: 1 class Solution { 2 public: 3 int maxn=0;//已经找到的最大合法长度 4 void dfs(string&…
-
前缀树-TrieTree
# 只处理了ascii字符 local Node = {} Node.__cname = “util.TrieTree.Node” Node.__index = Node func…
-
D2. 388535 (Hard Version)
(所以这题为什么叫388535 题意:有一个[l,r]的排列,现在将里面每个数和x异或,得到一个新的数组,现在把这个数组打乱后给你,让你求x。 解0.5:数字的个数是奇数的时候可以…
-
L2-040 哲哲打游戏
这题读懂题目之后就发现它很呆 #include <bits/stdc++.h> using namespace std; const int N = 100010, M…