自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(15)
  • 收藏
  • 关注

原创 前端学习(2):弹窗,表格——留言板的美化与加入回复功能(jsp)

表格1.参考了用css样式写的十个表格设计,效果如本网页。打开网页检查元素,找到想要的表格的对应代码。2.在本地jsp文件中加入css描述或者引用css文件。弹窗引用自 https://blog.csdn.net/py941215/article/details/77871311在head中写入JavaScript描述。<script language="javascri...

2021-07-22 03:33:00 913

原创 20/5月

Leetcode5385字符 replacestartwithclass Solution: def maxDiff(self, num: int) -> int: mx,mn=int(num),int(num) st=str(num) for i in range(10): for j in range(10): a,b=str(i),str(j)

2020-05-20 00:03:36 127 1

原创 20/4月

1. 布隆过滤器(及其他存储题目描述一个网站有 100 亿 url 存在一个黑名单中,每条 url 平均 64 字节。这个黑名单要怎么存?若此时随便输入一个 url,你如何快速判断该 url 是否在这个黑名单中?解1 散列表10 亿字节 ≈ 1 G, 共需640G。散列表是会出现散列冲突的。为了让散列表维持较小的装载因子,避免出现过多的散列冲突,需要使用链表法来处理,这里就要存储链表指针...

2020-05-03 00:15:10 200

原创 20/3月

树1. 1树的前中后层序class Solution(object): # 前序 def preorderTraversal(self, root): if not root:return [] val = [] nodes = [root] while nodes: cur =...

2020-04-01 14:24:26 117

原创 Py. Basic

索引1.基础语法1.1 标识符1.2 多行语句1.3 引号1.4 注释1.5 输出1.6 变量1.7 标准数据类型- Numbers(数字)- String(字符串)- List(列表) 有序- Tuple(元组) 只读- Dictionary(字典)key-value对1.8 运算符2.快捷键3.语句4.函数1.基础语法1.1 标识符以单下划线开头 _foo的代表不能直接访问的类属性,需通...

2020-02-29 00:00:16 325

原创 ielts 词汇句型

常用词汇替换oldnewfor exampleby the way of example举例it’s obviously that… is manifest to everyone显然hold onsb persevere with sth坚持it is important thatit is crucial that重要be bus...

2020-02-28 23:58:52 575

原创 ielts写作

Topic句型词汇例句mushrooming of language institution 语言机构的兴起juvenile delinquency 青少年犯罪monumental buildings介词短语1, both in学校and社会2. both公司and individuals3. in many cities /countries4. after they le...

2020-02-28 23:57:54 1289

原创 雅思小作文

小作文基本句主语 + 动词 + a + 形容词 + 名词好的趋势celebrate/embrace/be blessed withthe sales amount was blessed with a sharp increase坏的趋势suffer from / be afflicted with /the sales amount suffered from a sm...

2020-02-28 23:57:32 289

原创 大作文

结构To what extent do you think this is a positive or negative …立场3-7开1️⃣背景句:As technology is advancing by leaps and bounds, the way people live and work has undergo a noticeable and far-reaching t...

2020-02-28 23:57:13 2400

原创 Deep learning 吴恩达 course-1

Week 1对于图像应用,我们经常在神经网络上使用卷积(Convolutional Neural Network),通常缩写为CNN。对于序列数据,例如音频,有一个时间组件,随着时间的推移,音频被播放出来,所以音频是最自然的表现。作为一维时间序列(两种英文说法one-dimensional time series / temporal sequence).对于序列数据,经常使用RNN,一种递归...

2020-02-28 23:56:45 279

原创 Jupyter& Plotly

Jupyter安装#For Python2pip install jupyter#For Python3pip3 install jupyter使用jupyter notebook执行上面命令之后, Jupyter Notebook 将在你的默认浏览器中打开,网址为:http://localhost:8888/tree#notebooksplotly官网https://p...

2019-01-22 16:01:12 1395

原创 PDC-Program Design and Construction

1.Collections1.1set:无序,元素唯一HashSet<Integer> numbers = new HashSet();numbers.add(num);for(Integer i: numbers){ System.out.println(i); }1.2list:有序,有index,

2019-01-18 09:01:10 479

原创 ADA:Algorithm Design and Analysis——review

1.Divide-and-Conquer1.1Divide-and-Conquer1.2 Karatsuba’s Algorithm1.3Merge SortT(n) = 2T(n/2) + cn1.4Binary SearchT(n) = T(n/2) + c1.5Master TheoremT(n) = aT(n/b) + f (n)a ≥ 1, b > 1 are...

2019-01-02 14:23:10 558

原创 图的遍历算法(1):Dijkstra

伪代码描述时间复杂度分析Priority Queues:1.Linked list: O(n2)2.Binary Heap:O((m+n)log n)步骤分析代码 //use for get weight/// public double getEdge( int node1, int node2 ){ double w ; w = weight...

2018-10-31 15:36:23 942

原创 前端学习(1):Tomcat,MySQL,eclipse——制作简易留言板

基础设置1.下载brackets,用于编辑html文本2.使用eclipse编辑jsp文件作为网页后台脚本3.下载tomcat,在eclipse下配置tomcat4.下载MySQL和可视化和可视化处理软件Navicat,作为数据库遇到的问题1.之前下载的eclipse版本中无server选项,导入安装包后解决2.使用eclipse写jsp时,运行时提示local host端口已被占用...

2018-10-02 15:59:39 1440

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除