码迷,mamicode.com
首页 >  
搜索关键字:ternary search tree    ( 28833个结果
6-20 位密码交验正则
/*** * 校验密码 能匹配的组合为:数字+字母,数字+特殊字符,字母+特殊字符,数字+字母+特殊字符组合,而且不能是纯数字,纯字母,纯特殊字符 */ public static function checkPwd($pwd) { $search = '/^(?![\d]+$)(?![a-zA-Z ...
分类:其他好文   时间:2021-05-25 18:31:40    阅读次数:0
python3.8模块懒加载
1. 代码如下: ($是命令行提示符) $ #目录结构 $ tree . ├── a.py └── impt.py 0 directories, 2 files # impt.py import sys import importlib from importlib.util import Lazy ...
分类:编程语言   时间:2021-05-25 18:05:28    阅读次数:0
每日LeetCode - 101. 对称二叉树(C语言)
C语言 #include "stdbool.h" #define NULL ((void *)0) //Definition for a binary tree node. struct TreeNode { int val; struct TreeNode *left; struct TreeNo ...
分类:编程语言   时间:2021-05-25 17:51:01    阅读次数:0
算法打卡 week10
437. 路径总和 III class Solution: def pathSum(self, root: TreeNode, sum: int) -> int: dp = {} def search(root: TreeNode): if root: search(root.left) searc ...
分类:编程语言   时间:2021-05-24 17:23:14    阅读次数:0
二叉树的建立,非递归中序,后序,先序
import java.util.LinkedList; import java.util.Scanner; class TreeNode{ char val; TreeNode leftchild; TreeNode rightchild; int flag;//用于后续非递归 } public ...
分类:其他好文   时间:2021-05-24 15:37:05    阅读次数:0
Docker命令大全
初级命令 搜索镜像 docker search ubuntu //一般靠前的是官方镜像,其他是用户自己创建并分享的 下载镜像 docker pull ubuntu //默认下载最新版本的 列出下载的镜像 docker images 创建并使用容器 docker run -i -t --name he ...
分类:其他好文   时间:2021-05-24 14:34:45    阅读次数:0
数据结构 03-树2 List Leaves (25 分)
Given a tree, you are supposed to list all the leaves in the order of top down, and left to right. Input Specification: Each input file contains one t ...
分类:其他好文   时间:2021-05-24 14:03:04    阅读次数:0
Linux命令6
14章进程管理 1.每个执行的程序都称一个程序,每个进程都分配一个ID(pid,进程号) 2.程序有两种方式:前台和后台 3.系统的服务都是以后台进程的方式存在,而且常驻在系统。 查看进程 ps 命令查看执行情况 ps -a 查看当前的所有进程信息 ps -u 以用户的格式显示进程信息 ps -x ...
分类:系统相关   时间:2021-05-24 13:42:34    阅读次数:0
element plus中tree组件的使用以及自定义图标
<el-tree :data="data" node-key="id" ref="tree" icon-class="el-icon-share" :props="defaultProps"> <template #default="scope"> <div class="custom-node"> ...
分类:其他好文   时间:2021-05-24 13:29:53    阅读次数:0
ArcGIS Server 10.2 安装教程
arcgis 相关安装 见 http://www.driver114.com/plus/search.php?keyword=arcgis&searchtype=titlekeyword&channeltype=0&orderby=&kwtype=0&pagesize=10&typeid=0&Tot ...
分类:其他好文   时间:2021-05-24 12:53:03    阅读次数:0
28833条   上一页 1 ... 7 8 9 10 11 ... 2884 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!