码迷,mamicode.com
首页 >  
搜索关键字:left    ( 12115个结果
HTML的标题样式
标题样式1 <p> <span style=" text-align: center; padding-bottom: 6px; padding-left: 20px; padding-right: 500px; color: #800080; padding-top: 6px; box-shado ...
分类:Web程序   时间:2020-11-08 17:16:18    阅读次数:37
Leetcode 对称二叉树
Leetcode 101 数据结构定义: /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x ...
分类:其他好文   时间:2020-11-07 16:16:53    阅读次数:21
so的装载与链接
title: so的装载与链接 categories: 逆向与协议分析 toc: true mathjax: true tags: so 逆向 widgets: type: toc position: left type: profile position: left author: RunopeA ...
分类:其他好文   时间:2020-11-06 02:42:00    阅读次数:22
SQL主表、从表
1.关于主表和从表怎么选择的问题 select * from table, from后边的是主表,join 后边的是从表 常见的是取的字段多的表是主表,但不是常见的不一定每次都是对的。 还要看后边where 是用那张表的字段去做过滤, select a.id as menuId, a.name, a ...
分类:数据库   时间:2020-11-06 01:55:56    阅读次数:23
二叉树相关
#include <iostream> #include <vector> #include <stack> #include <queue> template <class T> typedef struct node { node* left; node* right; T val; std:: ...
分类:其他好文   时间:2020-11-06 01:25:12    阅读次数:16
Leetcode 104. 二叉树的最大深度
题解:递归求左右子树的最大深度。 /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { ...
分类:其他好文   时间:2020-11-06 01:10:43    阅读次数:21
线性方程整数解,扩展欧几里得解分析
###符号说明 $y_{0}=\left ( a_{1},a_{2},...,a_ \right ) 即y_{0}是a_{1},a_{2},...,a_$的最大公因数 \(d|a_{i}(d整除a_{i},a_{i}是d的倍数)\) ###定理 \(设a_{i}\in Z ,A=\left \{ y ...
分类:其他好文   时间:2020-11-04 17:50:48    阅读次数:12
二分查找(C++实现)
class Solution { public: int peakIndexInMountainArray(vector<int>& arr) { int n = arr.size(); if(n==0) { return -1; } int left = 0; int right = n-1; w ...
分类:编程语言   时间:2020-11-04 17:43:48    阅读次数:26
Python tkinter canvas实现图片裁剪
实现:tkinter 画布上显示图片,按下鼠标左键并且移动,实现截图 # -*- encoding=utf-8 -*- import os import tkinter as tk from PIL import Image from PIL import ImageTk left_mouse_do ...
分类:编程语言   时间:2020-10-30 12:22:43    阅读次数:28
求根到叶子节点数字之和
##前序遍历+判断 /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x ...
分类:其他好文   时间:2020-10-30 11:39:04    阅读次数:14
12115条   上一页 1 ... 17 18 19 20 21 ... 1212 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!