码迷,mamicode.com
首页 >  
搜索关键字:xpl    ( 1173个结果
Object References, Mutability, and Recycling
1. Function Parameters as References The only mode of parameter passing in Python is call by sharing(共享传参). Call by sharing means that each formal par ...
分类:其他好文   时间:2020-02-08 09:58:29    阅读次数:75
Leetcode 9. Palindrome Number
Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Input: 121Output: true ...
分类:其他好文   时间:2020-02-06 20:03:07    阅读次数:83
C# 正则表达式大全
文章导读 正则表达式的本质是使用一系列特殊字符模式,来表示某一类字符串。正则表达式无疑是处理文本最有力的工具,而.NET提供的Regex类实现了验证正则表达式的方法。Regex 类表示不可变(只读)的正则表达式。它还包含各种静态方法,允许在不显式创建其他类的实例的情况下使用其他正则表达式类。 基础梳 ...
分类:Windows程序   时间:2020-02-04 23:43:50    阅读次数:130
PHP 数组转字符串,与字符串转数组
1 implode 使用一个字符串将数组变成字符串 1 2 3 4 5 6 7 8 9 10 11 <br><?php $array = array('lastname', 'email', 'phone'); $comma_separated = implode(",", $array); ech ...
分类:编程语言   时间:2020-02-02 19:47:43    阅读次数:55
[Leetcode] 1343. Maximum Product of Splitted Binary Tree | 分裂二叉树的最大乘积
Given a binary tree . Split the binary tree into two subtrees by removing 1 edge such that the product of the sums of the subtrees are maximized. Sinc ...
分类:其他好文   时间:2020-02-02 15:59:08    阅读次数:110
WEB漏洞---命令注入
命令注入(Command Injection)是指通过提交恶意构造的参数破坏命令语句结构。从而达到执行恶意命令的目的。 查看命令注入的流程: 1;查看是否调用系统命令。 2;函数以及函数的参数是否可控。 3;是否拼接命令注入。 下面我们使用dvwa来做测试。 A;我们先将安全等级调整为“low” 1 ...
分类:Web程序   时间:2020-02-01 10:18:43    阅读次数:121
Windows hide drive
HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer\ NoDrives DWord 32 A:1 B:2 C:4 D:8 E:16 F:32 G:64 H:128 I:256 J:512 K:1024 L:2048 M: ...
分类:Windows程序   时间:2020-01-29 12:34:39    阅读次数:87
0 导读
1、本书的目的 告诉你如何高效运用C++,使你的软件易理解、易维护、可移植、可扩充、高效、并且有着你预期的行为。如果任何时间都遵守每一条准则,不太可能掉入C++常见的陷阱中。 2、一些术语 声明式:告诉编译器某个东西的名称和类型,但是略去细节。(例如:对象、函数、类、模板声明式) 签名式:指的是函数 ...
分类:其他好文   时间:2020-01-27 19:25:39    阅读次数:60
Linux中两个重要的基础服务
本文服务器基于centos7,客户端Windows10 FTP FTP(File Transfer Protocol),文件传输协议,是一个比较古老的基于TCP,用于不同计算机间传递文件的协议。 安装 # 判断是否安装过ftp服务或客户端 yum list installed | grep ftp ...
分类:系统相关   时间:2020-01-23 22:47:03    阅读次数:130
二项式堆
#ifndef BINOMIAL_HEAP #define BINOMIAL_HEAP #include <vector> #include <algorithm> #include <iostream> template<typename T> struct BinomialNode { T va ...
分类:其他好文   时间:2020-01-22 20:13:05    阅读次数:77
1173条   上一页 1 ... 18 19 20 21 22 ... 118 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!