Wonz
Wonz
全部文章
分类
# ACM(1)
# C++(32)
# C语言(12)
# Django(11)
# git(3)
# Hexo(6)
# HTML(1)
# LaTex学习(1)
# Linux(16)
# MySQL(1)
# PAT(46)
# Python(13)
# SQL数据库(10)
# 动态规划(13)
# 微型计算机原理与接口技术(16)
# 操作系统(9)
# 数据结构(28)
# 机器学习(4)
# 比赛感想与回忆(1)
# 汇编语言程序设计(11)
# 洛谷(4)
# 离散数学(5)
# 经验之谈(1)
# 编译原理(4)
# 计算机图形学(14)
# 资源汇总(5)
# 软件安装(34)
# 运筹学(5)
Go学习笔记(19)
LeetCode个人题解(179)
PostgreSQL(3)
——————数学——————(1)
——————科研——————(1)
——————算法——————(13)
——————随笔——————(12)
—————人工智能—————(1)
南邮期末考试回忆and知识梳理(1)
实用小工具分享(2)
找工作(1)
归档
标签
去牛客网
登录
/
注册
Wonz
Enjoy Coding. Enjoy Life.
TA的专栏
198篇文章
1人订阅
LeetCode个人题解
179篇文章
1605人学习
Go学习笔记
19篇文章
877人学习
全部文章
(共540篇)
LeetCode | 0538. 把二叉搜索树转换为累加树【Python】
来自专栏
Problem LeetCode Given the root of a Binary Search Tree (BST), convert it to a Greater Tree such that every key of the original BST is changed to the ...
二叉树
Python
LeetCode
2021-01-07
0
455
LeetCode | 0230. 二叉搜索树中第K小的元素【Python】
来自专栏
Problem LeetCode Given a binary search tree, write a function kthSmallest to find the kth smallest element in it. Example 1: Input: root = [3,1,4,null...
二叉树
Python
2021-01-07
0
707
LeetCode | 0654. Maximum Binary Tree最大二叉树【Python】
来自专栏
Problem LeetCode Given an integer array with no duplicates. A maximum tree building on this array is defined as follow: The root is the maximum numbe...
二叉树
Python
LeetCode
2021-01-06
0
489
LeetCode | 0114. 二叉树展开为链表【Python】【Go】
来自专栏
Problem LeetCode Given a binary tree, flatten it to a linked list in-place. For example, given the following tree: 1 / \ 2 5 / \ \ 3 4...
二叉树
Go
LeetCode
Python
2021-01-06
0
635
LeetCode 0116. 填充每个节点的下一个右侧节点指针【Python】【Go】
来自专栏
Problem LeetCode You are given a perfect binary tree where all leaves are on the same level, and every parent has two children. The binary tree has th...
二叉树
Go
LeetCode
Python
2021-01-06
0
468
工作近半年的一些个人感悟
写在前面 2019.12.21-12.22,我参加了 2020 全国硕士研究生招生考试初试。后来的结果算是意料之中,没考上,经过自己的一番思考之后,毅然决定毕业后直接工作。在参加 2020 年春招的时候,我写下了一篇文章:我选择直接工作,不读研。 现在是 2020 年 12 月,快接近 2020 年...
感悟
2020-12-30
1
568
Python bytes 反斜杠转义问题解决方法
一、问题 因为前文提到工作中需要使用 Go 调 Python 脚本执行加解密,但是 Go 那边执行命令行输出的是 str 类型。因此需要转回 bytes 进行解密,但是发现转回 bytes 和原来的不一样。下面以一个小例子做演示。 old_bytes = b"=\x1di\xab\xc1~...
str
bytes
Python
2020-12-23
0
527
使用 Python 脚本执行国密 sm2 加解密
一、场景 工作中的一个场景:Go 需要对信息加解密,但是研究了 GmSSL Go API 文档之后,发现是依赖于 CGO 的,同事配了半天环境没配成功。于是换了一个方法,选择 Go 调 Python 脚本执行加解密。之前我是写过 Python 对信息使用国密 sm2 算法进行加解密的,因此比较方便。...
加密解密
脚本
gmssl
Python
2020-12-23
0
1168
Beego 框架学习笔记 05 | 视图、模板引擎
来自专栏
一、模板引擎 1. 模板中绑定基本数据、字符串、数值、布尔值 default.go: package controllers import ( "github.com/astaxie/beego" ) type MainController struct { ...
Go
视图
beego
2020-12-16
0
592
Beego 框架学习笔记 04 | 动态路由、路由伪静态、正则路由、路由跳转
来自专栏
一、动态路由 api.go: package controllers import ( "github.com/astaxie/beego" ) type ApiController struct { beego.Controller } // http:/...
路由
Go
beego
2020-12-16
0
593
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页