A Two Rival Students 题意:共n个人排一排,两个人,位于a,b,相邻位置交换至多x次,最大化abs(a b)的值。 题解:每次交换至多+1,不能超过n 1。 B Magic Stick 题意:给一个数a,有无限次的两种操作:1、若a是偶数,则加上a的一半。2、若a 1,则减去1。 ...
分类:
其他好文 时间:
2019-11-14 09:43:32
阅读次数:
83
链接: https://vjudge.net/problem/LightOJ 1282 题意: You are given two integers: n and k, your task is to find the most significant three digits, and least ...
分类:
其他好文 时间:
2019-11-13 09:19:03
阅读次数:
95
Given two strings s and t , write a function to determine if t is an anagram of s. Example 1: Input: s = "anagram", t = "nagaram" Output: true Example ...
分类:
其他好文 时间:
2019-11-12 09:21:34
阅读次数:
80
349. Intersection of Two Arrays Easy Easy Easy Given two arrays, write a function to compute their intersection. Example 1: Input: nums1 = [1,2,2,1], ...
分类:
其他好文 时间:
2019-11-11 12:30:31
阅读次数:
91
Compare two version numbers version1 and version2.If version1 > version2 return 1; if version1 < version2 return -1;otherwise return 0. You may assume ...
分类:
其他好文 时间:
2019-11-11 09:28:41
阅读次数:
84
个数据文件包含下列数据,5个家庭没有汽车(编码为0),20个家庭有一辆汽车(编码唯1),10个家庭拥有两辆汽车(编码为2)指出下列哪种统计量适用于描述该数据并计算出统计量的值。(A) A拥有汽车数的众数 B.拥有汽车数的中位数 C.拥有汽车数的方差 D.变异系数 2.为了生成某个给定变量的总和。应该 ...
分类:
其他好文 时间:
2019-11-10 22:40:20
阅读次数:
119
A1.一个数据文件包含下列数据,5个家庭没有汽车(编码为0);20个家庭拥有一辆汽车(编码为1);10个家庭拥有两辆车(编码为2)。指出下列哪种统计量适用于描述该数据并计算出该统计量的值: A. 拥有汽车数的众数 B. 拥有汽车数的中位数 C. 拥有汽车数的方差 D.变异系数 B2.为了生成某个给定 ...
分类:
其他好文 时间:
2019-11-10 19:06:29
阅读次数:
149
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contai ...
分类:
其他好文 时间:
2019-11-10 17:34:22
阅读次数:
104
求两个链表的交点。给个LC的截图作例子, 两种思路,一个是需要求出两个链表各自的长度,当两者不想等的时候,需要先遍历长的链表,使得其剩下的长度要跟短的链表长度相等,再去找两者的交点。如图所示就是需要先让B移动到node.value = 0的那个节点,再遍历A和B,看看交点在哪里。 时间O(n) 空间 ...
分类:
其他好文 时间:
2019-11-10 10:23:41
阅读次数:
87
Map map=new HashMap(); map.put("1", "one"); map.put("2","two"); map.put("3", "three"); map.put("4", "four"); map.put("5", "five"); map.put("6", "six") ...
分类:
编程语言 时间:
2019-11-09 22:10:47
阅读次数:
80