string.prototype.trim() The trim() method removes whitespace from both ends of a string. Whitespace in this context is all the whitespace characters ( ...
分类:
其他好文 时间:
2018-03-29 21:17:20
阅读次数:
191
cat:将文本连接起来显示在标准输出上控制符 如换行符-E --show-ends 显示结束符$-e:等于-vE-v:显示非打印符-n:显示每行按顺序编号-s:将多个连续的空白行合并显示一个空白行dasfasdfsadf ...
分类:
系统相关 时间:
2018-03-27 21:57:37
阅读次数:
134
一、字符串 1.字符串基础 1)作用:用于描述姓名、性别、地址等信息 2)定义方式:单引号或者双引号以及三引号内添加字符 注:day3中介绍 2.字符串常规操作+内置方法 1)strip()、lstrip()、rstrip() 2)lower()、upper() 3)startwith()、ends ...
分类:
编程语言 时间:
2018-03-22 19:30:34
阅读次数:
186
var starty=0;//触摸开始var movey=0;//触摸结束var ends=0;//计算结果divs.addEventListener("touchstart", function(e) { var touch = e.touches[0]; //获取第一个触点 starty = N ...
分类:
其他好文 时间:
2018-03-19 13:30:37
阅读次数:
185
Our Journey of Xian Ends 链接:here 参考http://blog.csdn.net/wangshuhe963/article/details/78516821 费用流~ 1 #include <bits/stdc++.h> 2 using namespace std; 3 ...
分类:
其他好文 时间:
2018-02-28 12:55:28
阅读次数:
200
Test While You Sleep (and over Weekends) Rajith Attapattu RELAX. I am not referring to offshore development centers, overtime on week- ends, or workin ...
分类:
其他好文 时间:
2018-02-27 11:33:57
阅读次数:
204
题意翻译 给你一个数字,将其“四舍六入”,末尾为5舍去或进位都可,求最终的数字。 题目描述 Vasya has a non-negative integer n n n . He wants to round it to nearest integer, which ends up with 0 0 ...
分类:
其他好文 时间:
2018-02-24 13:13:13
阅读次数:
174
课本第三章例题 例3 1 `;p31,例3.1 DATA SEGMENT DATA ENDS CODE SEGMENT ASSUME CS:CODE START: MOV AX,DATA MOV DS,AX MOV AH,1 INT 21H MOV DL,AL ADD DL,1 MOV AH,2 I ...
分类:
其他好文 时间:
2018-02-20 19:41:37
阅读次数:
149
assume cs:codesg, ss:stacksg, ds:datasg stacksg segment dw 0,0,0,0,0,0,0,0 stacksg ends datasg segment db '1. display ' db '2. brows ' db '3. replace ... ...
分类:
编程语言 时间:
2018-01-19 20:25:58
阅读次数:
209
题目链接 题意 : 给出一副图,大连是起点,终点是西安,要求你求出从起点到终点且经过中转点上海的最小花费是多少? 分析 : 最短路是最小费用最大流的一个特例,所以有些包含中转限制或者经过点次数有限制的最短路问题都可以考虑使用最小费用最大流来建图解决。 首先对于每个点都只能经过一次这个限制,在网络流中 ...
分类:
其他好文 时间:
2018-01-12 22:35:37
阅读次数:
226