Binary Vector Spaces and Error Correcting CodesMAT2040 Linear Algebra (2019 Fall)Project 1Project Instructions:? Read the following text and answer th ...
分类:
其他好文 时间:
2019-10-27 20:28:53
阅读次数:
102
/* 清除IE的叉号和眼睛 */ ::-ms-clear, ::-ms-reveal{display: none;} html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,input,form,textarea,p,th,td,hr,button{ ma... ...
分类:
其他好文 时间:
2019-10-26 14:53:21
阅读次数:
99
题目描述: 给定一个包含 m x n 个元素的矩阵(m 行, n 列),请按照顺时针螺旋顺序,返回矩阵中的所有元素。 示例 1: 输入: [ [ 1, 2, 3 ], [ 4, 5, 6 ], [ 7, 8, 9 ] ] 输出: [1,2,3,6,9,8,7,4,5] 示例 2: 输入: [ [1, ...
分类:
其他好文 时间:
2019-10-26 13:40:36
阅读次数:
79
题意 一辆汽车加满油后可行驶n公里。旅途中有若干个加油站。设计一个有效算法,指出应哪些加油站停靠加油,使沿途加油次数最少。对于给定的n(n <= 5000)和k(k <= 1000)个加油站位置,编程计算最少加油次数。要求:输入:第一行有2个正整数n和k,表示汽车加满油后可行驶n公里,且旅途中有k个 ...
分类:
编程语言 时间:
2019-10-25 20:41:47
阅读次数:
111
系统描述:win7旗舰版64位系统+VMware Workstation10+CentOS6.5(win7系统上安装了VMware Workstation10虚拟化软件,在该虚拟化软件上安装了CentOS6.5),现在我想要在win7系统和CentOS系统之间传递数据,那么我 只要在虚拟机上安装VM ...
分类:
系统相关 时间:
2019-10-24 00:24:01
阅读次数:
112
实验内容: 源代码: 主类: ~~~ package exercise; public class TrainStationTicketSales implements Runnable { private int ticket = 1000; public void run() { for(int ...
分类:
其他好文 时间:
2019-10-22 23:57:19
阅读次数:
187
POJ-1251 Jungle Roads (水题,%c)POJ-1287 Networking (水)POJ-2031 Building a Space Station (%f浮点数尴尬精度,两球间距离)POJ-2421 Constructing Roads (一些边已建好,简单处理一下)ZOJ-... ...
分类:
其他好文 时间:
2019-10-22 11:23:38
阅读次数:
102
前言:一直以来都羡慕着LaTeX的强大排版功能,这次在为美赛做准备时,发现VSCode也可以配置LaTeX(不得不说微软还是很牛逼的),所以有了这篇小文章。系统环境配置基于Windows 10安装TexLive官网下载地址安装过程会比较久,主要原因是要下载镜像。(可能需要配置系统环境变量)安装VSC... ...
分类:
其他好文 时间:
2019-10-21 13:45:02
阅读次数:
500
问题描述: On an NxN chessboard, a knight starts at the r-th row and c-th column and attempts to make exactly K moves. The rows and columns are 0 indexed, ...
分类:
其他好文 时间:
2019-10-21 09:41:18
阅读次数:
91
Given a linked list, remove the n-th node from the end of list and return its head. Example: Note: Given n will always be valid. Follow up: Could you ...
分类:
其他好文 时间:
2019-10-21 09:25:57
阅读次数:
82