Given a 2d grid map of '1's (land) and '0's (water), count the number of islands. An island is surrounded by water and is formed by connecting adjacen ...
分类:
其他好文 时间:
2017-07-12 00:57:36
阅读次数:
214
KRPano可以实现多个屏幕之间的同步显示,主要应用到Websocket技术进行通信。 在控制端,我们需要发送当前KRPano场景的实时的视角和场景信息,可以使用如下的代码: 在被控制端,我们需要实时接收控制端传过来的视角信息,并周期性更新当前的视角和场景。 如果被控制端(如网页)无法直接创建Web ...
分类:
其他好文 时间:
2017-07-12 00:56:29
阅读次数:
1097
Java中单例模式是一种常见的设计模式,要求保证一个类仅有一个实例,并提供一个访问他的全局访问点 具体要求:一、构造方法私有化;二、声明一个本类对象;三、给外部提供一个静态方法,获取对象实例 两种实现方式:1.饿汉式故名之意:先创建实例, 2.懒汉式 顾名思义:懒吗,后创建实例 ...
分类:
编程语言 时间:
2017-07-12 00:54:31
阅读次数:
205
Using a module's __name__ Example 8.2. Using a module's __name__ #!/usr/bin/python # Filename: using_name.py if __name__ == '__main__': print 'This ...
分类:
编程语言 时间:
2017-07-11 23:30:38
阅读次数:
449
今天遇到一问题,无论如何也删除不干净datatable。我想全部删除。但总是得不到想要的结果。 在so上,找到了 其实也没有任何难点。 思路很重要。 ...
分类:
其他好文 时间:
2017-07-11 23:29:13
阅读次数:
355
1 #pragma once 2 3 #include 4 5 template 6 class AVLTree; 7 8 template 9 class AVLNode 10 { 11 friend class AVLTree; 12 public: 13 AVLNode() : data(Ty... ...
分类:
其他好文 时间:
2017-07-11 23:28:12
阅读次数:
348
1 #!/usr/bin/env python 2 #encoding: utf-8 3 #description: get local ip address 4 5 import os 6 import socket, fcntl, struct 7 8 def get_ip(): 9 #注意外围... ...
分类:
编程语言 时间:
2017-07-11 23:28:06
阅读次数:
331
一、httpclient项目有两种使用方式。一种是commons项目,这一个就只更新到3.1版本了。现在挪到了HttpComponents子项目下了,这里重点讲解HttpComponents下面的httpclient的使用方式。 二、加入jar包 三、使用方式 1、GET方法 2、POST方法 3、 ...
分类:
Web程序 时间:
2017-07-11 23:25:52
阅读次数:
289
一。你要做的事情: 1. 编写源代码:xxx.java 2. 编译器编译:检测代码错误 3. 输出:编译器输出xxx.class 4. 运行:java虚拟机运行xxx.class ...
分类:
编程语言 时间:
2017-07-11 23:25:13
阅读次数:
218
public class MyLinkedList { transient MyNode first = null; transient int size =0; Object[] obs = null; MyLinkedList(Object[] obs){ this.obs = obs; MyN... ...
分类:
编程语言 时间:
2017-07-11 23:24:23
阅读次数:
251