WordCount 1、GitHub项目地址 https://github.com/Anotn5/WordCount 2、项目需求 wc.exe 是一个常见的工具,它能统计文本文件的字符数、单词数和行数。这个项目要求写一个命令行程序,模仿已有wc.exe 的功能,并加以扩充,给出某程序设计语言源文件 ...
分类:
其他好文 时间:
2020-03-14 22:15:09
阅读次数:
83
import re DOMAIN =[] f = open('test.txt','r',encoding='UTF-8') w = open('domain.txt','w') for data in f.readlines(): domain = re.findall(r"\w+\.+baidu ...
分类:
其他好文 时间:
2020-03-14 21:41:19
阅读次数:
62
git log --pretty=tformat: --numstat | awk '{ add += $1; del += $2; tot += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\ ...
分类:
其他好文 时间:
2020-03-12 18:44:40
阅读次数:
82
procedure TF1167908962.Button1Click(Sender: TObject); begin ThIndex := 1; EPXThread1.StartThread; EPXThread2.StartThread; end; procedure TF1167908962. ...
分类:
编程语言 时间:
2020-03-12 14:20:16
阅读次数:
68
1.正三角形 function initLine(){ geometry = new THREE.Geometry(); var material = new THREE.LineBasicMaterial({vertexColors:true}); var p1 = new THREE.Vecto ...
分类:
Web程序 时间:
2020-03-10 22:10:49
阅读次数:
130
有 Bug 洁癖的开发者的福音,如何把你的Bug写得与众不同?
分类:
编程语言 时间:
2020-03-09 21:03:41
阅读次数:
69
姓名:薛洪财 学号:201821121042 班级:计算1812 1. 实验环境介绍 实验环境: 操作系统:Windows 10家庭中文版64位(10.0, 版本18362) 平台: Cygwin64 用户名:Xuehongcai 2. 常用命令使用 ls -ls ls -a man help 3. ...
分类:
系统相关 时间:
2020-03-06 20:11:33
阅读次数:
93
本文原计划写两部分内容,第一是记录最近遇到的与 Base64 有关的 Bug,第二是 Base64 编码的原理详解。结果写了一半发现,诶?不复杂的一个事儿怎么也要讲这么长?不利于阅读和理解啊(其实是今天有点懒想去休闲娱乐会儿),所以 Base64 编码的原理详解的部分将在下一篇带来,敬请关注。 0x ...
分类:
其他好文 时间:
2020-03-01 18:17:33
阅读次数:
62
题目 In graph theory, an Eulerian path is a path in a graph which visits every edge exactly once. Similarly, an Eulerian circuit is an Eulerian path whi ...
分类:
其他好文 时间:
2020-02-29 20:51:39
阅读次数:
104
CS 2033Multimedia and Communications IIAssignment 2Hometown WebpageOverviewThe city in which you grew up, or lived for a significant period of time, i ...
分类:
其他好文 时间:
2020-02-29 18:47:42
阅读次数:
71