代码 .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
procedure TMainForm.ConnectRDPByIndex(index: Integer); var ServerItem: PServerItem; tmpRpdFile, cmd: string; listview: TListView; begin listview := Ge ...
分类:
其他好文 时间:
2020-07-04 11:55:21
阅读次数:
70
Integer 让人疑惑的Java代码——Integer ...
Native Query throw exception dto code import lombok.Value; @Value public class IdsOnly { Integer id; String otherId; } repository public interface Tes ...
分类:
编程语言 时间:
2020-07-03 11:00:36
阅读次数:
147
Maximum Subarray (E) 题目 Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and retur ...
分类:
其他好文 时间:
2020-07-03 09:14:00
阅读次数:
76
Set接口 extend Collection接口 特点:1、不允许重复的元素 2、设有索引,没有带索引的方法,也不能进行普通for 3、是一个元素的集合,存取可能不一致 4、底层是哈希表(查询快) 方法上和Collection一致 实现类:HashSet:由哈希表构成 例:Set<Integer> ...
分类:
其他好文 时间:
2020-07-03 00:59:20
阅读次数:
55
package com.javaSe.Integer; /* 分析以下程序是为什么? 这个题目是Integer非常重要的一个面试题。 */ public class IntegerTest07 { public static void main(String[] args) { Integer a ...
分类:
其他好文 时间:
2020-07-03 00:56:51
阅读次数:
56
为什么java要提供8中包装呢? package com.javaSe.Integer; /* 1 java中为8种基本数据类型有对应准备了8种包装类型。8种包装类属于引用数据类型。父类是Object 2 思考:为什么要再提供8种包装类呢? 因为8种基本数据类型不够用。 所以SUN又提供了对应的8种 ...
分类:
其他好文 时间:
2020-07-02 23:23:56
阅读次数:
90
代码: String int Integer之间相互转换 package com.javaSe.Integer; /* String int Integer 之间相互转换。 */ public class IntegerTest09 { public static void main(String[ ...
分类:
其他好文 时间:
2020-07-02 23:23:24
阅读次数:
108
一、技术总结 这题是关于DFS即深度优先遍历算法,核心是掌握深度遍历算法的思想,也就是不断往下一个结点进行查找,如果查找不到,那么就返回; 关键点一个是递归边界,也就是查找不到的条件,以及能够往下查找的路有多少条; 二、参考代码 #include<iostream> #include<vector> ...
分类:
其他好文 时间:
2020-07-02 21:44:59
阅读次数:
55