码迷,mamicode.com
首页 >  
搜索关键字:re    ( 14383个结果
Leeetcode 221 最大正方形 DP
JAVA DP 反向: public final int maximalSquare(char[][] matrix) { int xLen = matrix.length, yLen = matrix[0].length, re = 0; int[][] cache = new int[xLen] ...
分类:其他好文   时间:2021-07-23 17:42:02    阅读次数:0
暑假学习Flag
暑假学习Flag 系统学习python爬虫,常见库(request,re,threading) 系统学习node.js 刷完所有一分BUU 审计基本的php通用cms漏洞(tp,laravel,托纳多),争取获取一个CNVD 系统学习网络 看3本课外小说 不要浪费感情在不需要的地方了吧,减少无用社交 ...
分类:其他好文   时间:2021-07-06 16:23:59    阅读次数:0
排序比较器的方法
使用lambda表达式 Collections.sort(List, (a,b) -> x1 - x2); 自定义Comparator方法 Collections.sort(List, new Comparator<E>(){ public int compare(int a, int b){ re ...
分类:编程语言   时间:2021-07-05 18:56:31    阅读次数:0
文件/文件夹下文件编码转换【转码】
#!/usr/bin/python # -*- coding: UTF-8 -*- # @auther gaocan 809900210@qq.com import sys import os import re import codecs ''' Codec: See Python`s Stand ...
分类:其他好文   时间:2021-07-01 17:19:46    阅读次数:0
"Hello osmdroid World"手机GPS轨迹数据
osmdroid's MapView is basically a replacement for Google's MapView class. First of all, create your Android project, and follow HowToMaven if you're u ...
分类:移动开发   时间:2021-07-01 16:54:55    阅读次数:0
JavaScript 字符串的方法
JavaScript 字符串的方法 字符串的长度:length() let str='abcdefgabcd'; console.log(str) //返回的是 字符串的长度 把字母转换为小写的:toLowerCase() let str='abcdefgFADCOd'; let re=str.to ...
分类:编程语言   时间:2021-06-30 17:57:00    阅读次数:0
Jmeter中发送TCP请求
一、发送TCP请求的步骤: 1、添加tcp取样器 2、填写ip、端口号、超时时间 3、选择连接方式 4、填写响应结果中最后一个字符ASCII编码中对应的十进制数 Re-use connection:是否重用链接,如果选择,同一个线程执行的所有请求都会使用一个tcp连接 Re-use connecti ...
分类:其他好文   时间:2021-06-28 21:05:11    阅读次数:0
STL----set和vector内的指针使用和一些函数
set内是一颗红黑树,好像我以后也是要学的 注意set是会自动排序的,但是你根本找不到每一个数的排名 因为,set没这个功能,开一个数组记录一下就好了 所以我们现在有这么几个函数 #include<bits/stdc++.h> using namespace std; #define re regi ...
分类:其他好文   时间:2021-06-28 18:30:07    阅读次数:0
24.Python:操作文件的其他方法
# Python learning# coding:utf-8# 1.读相关操作# f.readline() 读一行# with open(r"a.txt", mode="rt", encoding="utf-8") as f: # res1 = f.readline() # res2 = f.re ...
分类:编程语言   时间:2021-06-25 17:14:08    阅读次数:0
How to add the custom nuget feed to TeamCity build?
The NuGet package sources are configured through Visual Studio, but they're stored in a per-user configuration file, found at c:\Users\$USER\AppData\R ...
分类:其他好文   时间:2021-06-24 18:32:12    阅读次数:0
14383条   1 2 3 4 ... 1439 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!