规雨
规雨
全部文章
分类
Java-web开发(24)
Java底层(1)
Java项目实战(1)
会用决定下限,基础决定上限(5)
全栈-Java基础(13)
数据结构(8)
每日一道编程题(57)
知识积累(8)
算法(1)
归档
标签
去牛客网
登录
/
注册
兴趣记录
以兴趣为驱动,以咸鱼为目标
全部文章
(共118篇)
34 N-ary Tree Preorder Traversal
题目 跟上一篇N叉树后序遍历基本一致,区别就在于本题要求使用前序遍历。 分析 还是老办法,只需要利用遍历“最小元”的思想进行递归即可。 后序遍历: n叉树后序遍历的最小元:先遍历其他节点-->再遍历根节点 从题意可知,根节点是root,其他节点是root.children中的节点...
2020-02-27
0
442
33 N-ary Tree Postorder Traversal
题目 Given an n-ary tree, return the postorder traversal of its nodes’ values. Nary-Tree input serialization is represented in their level order trave...
2020-02-26
0
570
【数据库系统概论】
只记录了个人觉得的重点和难点知识,大部分是摘抄ppt,部分会给出自己的解答和扩展。 持续更新中 数据库系统概论 1. 绪论 1.1 数据库系统概述 1.2 数据模型 概念模型 1.3 数据库系统的结构 1.4 数据...
2020-02-25
2
686
32 Number of Recent Calls
题目 Write a class RecentCounter to count recent requests. It has only one method: ping(int t), where t represents some time in milliseconds. Return ...
2020-02-25
0
430
Java学习笔记-全栈-web开发-24-Vue
Vue 1. 开发环境 VSCode 2. vue介绍 2.1 vue与原生js(或jquery)的优势 2.2 MVVM 3. 常用指令 {{}} v-text v-html title属性 v-bind v-on 数据双向绑定 v-...
2020-02-25
0
1305
Java学习笔记-全栈-web开发-23-Shiro框架
Shiro 1. 功能简介 2. Shiro架构 对外部而言: 对内部而言 3. HelloWorld 官方HelloWorld 个人入坑步骤(springboot) MD5加密 4. 与Web集成 ShiroFi...
2020-02-25
0
1237
31 Search in a Binary Search Tree
关注 每天一道编程题 专栏,一起学习进步。 题目 Given the root node of a binary search tree (BST) and a value. You need to find the node in the BST that the node’s value...
2020-02-24
0
404
【软件工程】
软件工程 1.初识软件工程 1.1 软件的本质特性 1.2 软件工程历史 1.3 软件工程基本概念 1.4 软件质量实现 1.5 软件开发方法 2. 编写高质量代码 2.1 编码过程与规范 2.2 良好的编程实践 ...
2020-02-23
1
8354
30 Peak Index in a Mountain Array
关注 每天一道编程题 专栏,一起学习进步。 题目 Let’s call an array A a mountain if the following properties hold: A.length >= 3 There exists some 0 < i < A.le...
2020-02-23
0
574
28 Array Partition I
关注 每天一道编程题 专栏,一起学习进步。 题目 Given an array of 2n integers, your task is to group these integers into n pairs of integer, say (a1, b1), (a2, b2), …, (...
2020-02-20
0
464
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页