原理先不了解,只记录常用方法 用法: @EnableWebMvc 开启MVC配置,相当于 Conversion and Formatting 配置convert和formatter的方法有两种,分别使用ConverterRegistry和FormatterRegistry 使用注册工厂 WebMvc ...
分类:
编程语言 时间:
2019-06-12 18:07:29
阅读次数:
100
题目描述将一个给定字符串根据给定的行数,以从上往下、从左到右进行 Z 字形排列。 比如输入字符串为 “LEETCODEISHIRING” 行数为 3 时,排列如下: L C I RE T O E S I I GE D H N123之后,你的输出需要从左往右逐行读取,产生出一个新的字符串,比如:“LC ...
分类:
其他好文 时间:
2019-06-11 09:41:21
阅读次数:
140
这道题比较简单,观察清楚规律后很快可以写出来。 但是用go写的版本,总是答案错误,本地无问题。后用Java重写。 ...
分类:
其他好文 时间:
2019-06-06 21:33:51
阅读次数:
115
EBU5405: 3D Graphics Programming Tools - Coursework 2019In this coursework you will develop an articulated and interactive object in the shape of acra ...
分类:
其他好文 时间:
2019-06-06 21:27:37
阅读次数:
100
103. 二叉树的锯齿形层次遍历 103. Binary Tree Zigzag Level Order Traversal 题目描述 给定一个二叉树,返回其节点值的锯齿形层次遍历。(即先从左往右,再从右往左进行下一层遍历,以此类推,层与层之间交替进行)。 LeetCode103. Binary T ...
分类:
其他好文 时间:
2019-06-01 23:18:41
阅读次数:
133
Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and ...
分类:
其他好文 时间:
2019-05-23 20:48:23
阅读次数:
85
kafka从0.11.0版本开始所使用的消息格式版本为v2,这个版本的消息相比于v0和v1的版本而言改动很大,同时还参考了ProtocolBuffer而引入了变长整型(Varints)和ZigZag编码。为了更加形象的说明问题,首先我们来了解一下变长整型。Varints是使用一个或多个字节来序列化整数的一种方法。数值越小,其所占用的字节数就越少。Varints中每个字节都有一个位于最高位的msb位
分类:
其他好文 时间:
2019-05-23 15:42:23
阅读次数:
112
Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and ...
分类:
其他好文 时间:
2019-05-13 12:40:32
阅读次数:
130
题目链接:(https://leetcode cn.com/problems/zigzag conversion/) 题目描述: 将一个给定字符串根据给定的行数,以从上往下、从左到右进行 Z 字形排列。 比如输入字符串为 行数为 3 时,排列如下: 之后,你的输出需要从左往右逐行读取,产生出一个新的 ...
分类:
其他好文 时间:
2019-04-17 16:34:13
阅读次数:
135
The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font ...
分类:
其他好文 时间:
2019-04-14 10:03:07
阅读次数:
165