Welcome to My Blog
06
19
18
17
16
16
tf tf
References https://classroom.udacity.com/courses/ud187 TensorFlow IntroductionTransfer LearningLoad Data Setimport tens
2020-06-16
14
math math
数学 考虑int溢出,除数为0,数字不能以0开头(0除外)等特殊情况。 考虑gcd,lcm 考虑二分搜索 Fast Power$x = a * b^n$, n is a positive integer, a and b can be
2020-06-14
11
linux linux
Cmdlsls -l # list mode ls -la # list + all hidden filesls -lh # human readable size helpman pwd # open manual man
2020-06-11
05
21
dl_intro dl_intro
Reference本篇为斋藤康毅先生所编写《深度学习入门:基于python的理论和实现》中文译本的笔记。书中所附源码可见Github Repo。 感知机 接受多个输入信号,输出一个信号。信号只有0/1两种取值。 神经元会计算输入信号的总和
2020-05-21
19
arr arr
数组 考虑双向遍历数组 快慢指针应用:原数组上删除 用法:实质是快慢指针,其中一个做iterator,另一个做counter 双向双指针应用:原数组上rotate或者reverse,in place交换,求和 用法:前后两个指针分别向中
2020-05-19
16
stack-queue stack-queue
栈&队列 基本上结合其他问题考得比较多 需要实现特殊功能,考虑使用多个栈/队列 双端队列 Deque在java有现成接口,可以用LinkedList实现 单调栈 Mono Stack保证栈中数据是有序的,可以配合滑动窗口题使用
2020-05-16
16
binary search binary search
二分搜索 Binary Search 注意int溢出。 一种是根据index二分,一种是根据值二分。根据值二分的,要统计小于mid的个数,另外要注意mid到底是不是一个在范围之内的数。 返回之前最好再检测一遍是否符合要求。 如果不是
2020-05-16
13
polymorphism polymorphism
面向对象编程有三个特征,即封装、继承和多态。 概念封装隐藏了类的内部实现机制,从而可以在不影响使用者的前提下改变类的内部结构,同时保护了数据。 继承是为了重用父类代码,同时为实现多态性作准备。 多态是该对象自行决定响应何种行为,由方法的重写
2020-05-13
4 / 6