package main import ( "fmt" "strings" ) func main() { /* 示例 1: 输入: "the sky is blue" 输出: "blue is sky the" */ var s = "the sky is blue" fmt.Println(re ...
分类:
其他好文 时间:
2020-07-22 01:40:25
阅读次数:
66
<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>正确解决高度塌陷</title> <style media="screen"> .box { border: 1px solid; } .f ...
分类:
Web程序 时间:
2020-07-19 16:05:34
阅读次数:
75
Reverse Words in a String Given an input string, reverse the string word by word. Example 1: Input: "the sky is blue" Output: "blue is sky the" Exampl ...
分类:
其他好文 时间:
2020-07-07 15:09:44
阅读次数:
43
题目传送门 分析: 直接膜拜大佬博客OrzOrzOrz #include<cstdio> #include<cstring> #include<cmath> #include<algorithm> #include<vector> #include<iostream> #include<map> # ...
分类:
其他好文 时间:
2020-07-05 22:44:57
阅读次数:
59
int prime[maxn], prime_tot; int is_prime[maxn]; int mu[maxn]; void pre_calc(int lim) { mu[1] = 1; for (int i = 2; i <= lim; i++) { if (!is_prime[i]) { ...
分类:
其他好文 时间:
2020-06-30 20:43:31
阅读次数:
49
今天学习了Java中的继承,Java的继承和c++的差别很大。 继承的基本作用是代码复用,但最重要的作用是为了以后的“方法覆盖”和“多态机制”。 继承的语法是: [修饰符] class 类名 extends 父类名{ } 当B类继承A类时,A类。 A类称为父类,基类,超类,superclass; B ...
分类:
编程语言 时间:
2020-06-30 00:32:44
阅读次数:
71
0X00 漏洞简介: Microsoft Windows和Microsoft Windows Server都是美国微软(Microsoft)公司的产品,Microsoft Windows是一套个人设备使用的操作系统,Microsoft Windows Server是一套服务器操作系统,Server ...
分类:
其他好文 时间:
2020-06-27 13:28:26
阅读次数:
134
标题: 基于MarkDown和Github图床以及SourceTree的一站式文章编辑和发布 作者: 梦幻之心星 sky-seeker@qq.com 标签: [MarkDown,Github,图床,SourceTree,编辑,发布] 目录: [文章管理] 日期: 2020-6-24 前提说明 对于一 ...
分类:
其他好文 时间:
2020-06-24 23:34:15
阅读次数:
57
itertools 我们知道,迭代器的特点是:惰性求值(Lazy evaluation),即只有当迭代至某个值时,它才会被计算,这个特点使得迭代器特别适合于遍历大文件或无限集合等,因为我们不用一次性将它们存储在内存中。 Python 内置的 itertools 模块包含了一系列用来产生不同类型迭代器 ...
分类:
编程语言 时间:
2020-06-21 19:50:40
阅读次数:
74
今天在做项目时需要将一个DataTable分解成多个DataTable分批传入函数里面,于是在网上找寻了一番,修复了angle_greensky110 存在分表的缺陷的代码。 分表方法: /// <summary> /// 分解数据表 /// </summary> /// <param name=" ...