本篇学习了两种锁存器:SR Latch和D Latch,一种触发器:D flip flop SR Latch:SR—锁存器 初始状态下,S和R都为0,Q和Q‘随机有一个为1另一个 为0(取决于电流速度)。当把S弄成1后,Q为1,此后无论S怎么变化Q都为1。对R也是如此。 一句话总结就是:输出端可以记 ...
分类:
其他好文 时间:
2018-08-24 22:58:27
阅读次数:
317
Given a binary matrix A, we want to flip the image horizontally, then invert it, and return the resulting image. To flip an image horizontally means t ...
分类:
其他好文 时间:
2018-08-17 01:23:06
阅读次数:
131
[Arc080F]Prime Flip Description 你有无限多的“给给全”,编号为1,2,3,...。开始时,第x1,x2,...,xN个“给给全”是躺着的,其它的“给给全”是趴着的 你可以进行一些操作,每个操作大概是这样的: 选择一个不小于3的质数p,然后将连续的p个“给给全”翻过来 ...
分类:
其他好文 时间:
2018-08-14 20:01:44
阅读次数:
152
代码已经整理好,效果如下图: 地址:https://github.com/geeklx/myapplication2018/tree/master/p025_news_gundongall &nb
分类:
移动开发 时间:
2018-08-01 18:57:52
阅读次数:
197
若是有一段"++", 剩下的段和"--"组合 can not win, 那么返回true. 从头到尾试遍了没找到这么一段"++", 返回false. Time Complexity: exponential. T(n) = (n-2) * T(n-2) = (n-2) * (n-4) * T(n-4 ...
分类:
其他好文 时间:
2018-07-30 01:05:59
阅读次数:
150
若是连着的"++", 就把这段用"--"替代放到res中. Note: 当i == s.length()-1走到最后一位时. s.substring(i+1), 不会out of index, 会返回"". 但再大就不行了. Time Complexity: O(n). Space: O(1) re ...
分类:
其他好文 时间:
2018-07-30 00:36:13
阅读次数:
104
题目描述: Given a binary matrix A, we want to flip the image horizontally, then invert it, and return the resulting image. To flip an image horizontally m ...
分类:
其他好文 时间:
2018-07-29 11:49:14
阅读次数:
189
You are given a positive integer n. Your task is to build a number m by flipping the minimum number of bits in the binary representation of n such tha ...
分类:
其他好文 时间:
2018-07-28 22:01:45
阅读次数:
213
[抄题]: Given a binary tree where all the right nodes are either leaf nodes with a sibling (a left node that shares the same parent node) or empty, flip ...
分类:
其他好文 时间:
2018-07-27 13:16:32
阅读次数:
112
官方提供的.flow_from_directory(directory)函数可以读取并训练大规模训练数据,基本可以满足大部分需求。但是在有些场合下,需要自己读取大规模数据以及对应标签,下面提供一种方法。 步骤0:导入相关 步骤1:准备数据 步骤2:对训练数据进行数据增强处理 步骤3:定义模型 步骤4 ...
分类:
其他好文 时间:
2018-07-26 15:03:09
阅读次数:
1488