1) 基础语言描述理解考察https://www.tutorialspoint.com/go/go_interview_questions.htm这里有一栏、全面的问答,并且非常基础也包括golang的一些开放性话题的讨论 基础语言代码考察http://www.golangpro.com/2015/ ...
分类:
其他好文 时间:
2018-06-29 17:26:14
阅读次数:
197
#coding=utf-8 #repr方法字符串输出实例对象的值 class CountFromBy(object): def __init__(self, val=0, incr=1): self.val = val self.incr = incr def increase(self): sel... ...
分类:
其他好文 时间:
2018-06-26 10:59:07
阅读次数:
123
考场的时候想到的n*m做法tle了,正解是O(n+m) 首先想到一个性质是不管a[i],a[j]相差多少,只要a[i],a[j]同余,那想让他们increase后%m得到另一个余数,那他们需要increse的次数是相等的。 所以我们想到把n个数按%m从0到m-1分成m类。这样就能贪心了,因为如果%m ...
分类:
其他好文 时间:
2018-06-24 17:54:08
阅读次数:
430
传送门 题目 Sasha has an array of integers a1,?a2,?...,?an. You have to perform m queries. There might be queries of two types: 1 l r x — increase all inte ...
分类:
其他好文 时间:
2018-06-18 20:58:59
阅读次数:
208
原文链接:http://www.cnblogs.com/dolphin0520/p/3920373.html 作者:海子 Java并发编程:volatile关键字解析 volatile这个关键字可能很多朋友都听说过,或许也都用过。在Java 5之前,它是一个备受争议的关键字,因为在程序中使用它往往会 ...
分类:
编程语言 时间:
2018-06-14 18:20:57
阅读次数:
182
Fpm之Zookeeper-3.4.6rpm包定制一、Zookeeper编译包安装1.下载zookeeper编译安装包[root@localhostsoftware]#wgethttp://archive.apache.org/dist/zookeeper/zookeeper-3.4.6/zookeeper-3.4.6.tar.gz2.解压到编译包,并指定解压,安装存放的目录[root@local
分类:
其他好文 时间:
2018-06-14 18:18:22
阅读次数:
192
小程序 (node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit. 11 小程序内存泄露 有时候可能是... ...
分类:
微信 时间:
2018-06-14 14:45:02
阅读次数:
1141
一、this Java中为了解决变量的命名冲突和不确定性问题,引入了关键字this。this代表当前类的一个实例,它经常出现在方法和构造方法中,具体使用情况有以下三种: 1,返回调用当前方法的对象的引用。 上面的this表示的Increase的实例,也就是in。 2,在构造方法中调用当前类的其它构造 ...
分类:
其他好文 时间:
2018-06-11 22:06:11
阅读次数:
137
C. Three displays C. Three displays It is the middle of 2018 and Maria Stepanovna, who lives outside Krasnokamensk (a town in Zabaikalsky region), wan ...
分类:
其他好文 时间:
2018-05-31 00:31:51
阅读次数:
150
C. Three displays time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output It is the middle of 201 ...
分类:
其他好文 时间:
2018-05-30 21:14:47
阅读次数:
207