代码 .data S17: .asciiz "the bigger one is:" .text move $fp $sp j main max: lw $t8 0($sp) subi $sp $sp 8 sw $t8 0($sp) addi $sp $sp 12 lw $t8 0($sp) sub ...
分类:
其他好文 时间:
2020-07-04 13:23:36
阅读次数:
94
简介 读取Excle文档,支持xls,xlsx格式 安装:pip3 install xlrd 导入:import xlrd xlrd 模块方法 读取Excel file = 'route_info.xls' # 读取Excel信息,生成对象 read_book = xlrd.open_workboo ...
分类:
编程语言 时间:
2020-07-04 13:20:57
阅读次数:
64
CSS 中文开发手册 背景混合模式 | background-blend-mode (Compositing & Blending) - CSS 中文开发手册 background-blend-modeCSS属性定义该元素的背景图片,以及背景色如何混合。 /* One value */backgro... ...
分类:
Web程序 时间:
2020-07-04 01:25:20
阅读次数:
67
Given a non-empty array of non-negative integers nums, the degree of this array is defined as the maximum frequency of any one of its elements. Your t ...
分类:
其他好文 时间:
2020-07-03 21:48:09
阅读次数:
68
需要掌握的知识点: 单例模式 工厂模式 代理模式 java8特性Lambda 表达式 的使用 单例模式 单例设计模式,就是采取一定的方法保证在整个的软件系统中,对某个类只能存在一个对象实例,并且该类只提供一个取得其对象实例的方法。 实现单例模式需要满足三个条件: 单例类只能有一个实例。 单例类必须自 ...
分类:
编程语言 时间:
2020-07-03 21:42:56
阅读次数:
74
题目: 反转一个单链表。 示例: 输入: 1->2->3->4->5->NULL输出: 5->4->3->2->1->NULL进阶:你可以迭代或递归地反转链表。你能否用两种方法解决这道题? 来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/reve ...
分类:
编程语言 时间:
2020-07-03 21:41:43
阅读次数:
160
import tensorflow as tf (train_x,train_y),(test_x,test_y) = tf.keras.datasets.mnist.load_data() 划分验证集和测试集 valid_x = train_x[:5000] valid_y = train_y[: ...
分类:
Web程序 时间:
2020-07-03 21:15:30
阅读次数:
82
错误日志: java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHos ...
分类:
编程语言 时间:
2020-07-03 19:52:09
阅读次数:
84
HTML 5推出了10个重要的新的表单元素: Color. Date Datetime-local Email Time Url Range Telephone Number Search ...
分类:
Web程序 时间:
2020-07-03 19:42:07
阅读次数:
64
一、报错日志java.lang.IllegalStateException: Async support must be enabled on a servlet and for all filters involved in async request processing. This is do ...
分类:
其他好文 时间:
2020-07-03 17:54:31
阅读次数:
134