String函数 1.字符串的输入 (1) ...
分类:
编程语言 时间:
2020-02-27 16:14:05
阅读次数:
81
1060 Are They Equal (25分) 题目 思路 定义结构体 把输入的两个数先都转换为科学计数法,统一标准后再做比较,index表示指数 注意点 1. 0或者0的各种形式 2. 0.1, 0.01等 代码 ...
分类:
其他好文 时间:
2020-02-27 13:13:58
阅读次数:
56
MySQL LOCATE()函数 定义一 返回字符串substr中第一次出现子字符串的位置 str 语法 定义二 返回字符串substr中第一个出现子 字符串的 str位置,从位置开始 pos 语法 参数 | 参数 | 描述 | | | | | substr | 必须,包含的值 | | str | ...
分类:
数据库 时间:
2020-02-26 14:05:23
阅读次数:
121
有时候,我们希望通过身份证来计算出年龄,那么下面我写的函数很适合。 实现代码中已有详细注释。 function getAge($id){ # 1.从身份证中获取出生日期$id = $id;//身份证$birth_Date = strtotime(substr($id, 6, 8));//截取日期外汇 ...
分类:
Web程序 时间:
2020-02-25 20:19:00
阅读次数:
144
Given a string s consisting only of characters a, b and c. Return the number of substrings containing at least one occurrence of all these characters ...
分类:
其他好文 时间:
2020-02-25 13:10:02
阅读次数:
53
今天做图片上传时遇到问题,上传失败则需要删除新上传的图片,结果删除的时候报错 unlink('此处为文件路径'): Permission denied 查了一下网上有人说是文件夹权限问题,最后解决,不是文件夹权限问题 这里删除失败是因为文件还没有被释放,并非权限不足 上传成功之后使用 unser($ ...
分类:
Web程序 时间:
2020-02-24 13:30:20
阅读次数:
142
题目:给你一个字符串 s ,它只包含三种字符 a, b 和 c 。请你返回 a,b 和 c 都 至少 出现过一次的子字符串数目。 链接:https://leetcode-cn.com/problems/number-of-substrings-containing-all-three-charact ...
分类:
其他好文 时间:
2020-02-24 13:25:11
阅读次数:
79
/* * linux/arch/arm/lib/lib1funcs.S: Optimized ARM division routines * * Author: Nicolas Pitre <nico@cam.org> * - contributed to gcc-3.4 on Sep 30, 20 ...
分类:
其他好文 时间:
2020-02-21 12:45:59
阅读次数:
297
恢复内容开始 #include <iostream> #include <string.h> using namespace std; int main() { string s="abcdefg"; string s1=s.substr(2,6);//s1为字符串s起始位置为2,长度为6的一段字符 ...
分类:
其他好文 时间:
2020-02-20 22:13:03
阅读次数:
97
动态规划初级题,或者理解为滑动窗口。 class Solution { public int lengthOfLongestSubstring(String s) { Set<Character> demo = new HashSet<>(); int l=0,r=0,result=0; while ...
分类:
其他好文 时间:
2020-02-20 20:20:02
阅读次数:
49