1.今日内容 1. 单表查询语法 2. 关键字执行的优先级 2.具体内容 1. 简单查询 建表准备工作 ...
分类:
数据库 时间:
2020-01-10 12:15:00
阅读次数:
69
Question Given an array of citations sorted in ascending order (each citation is a non-negative integer) of a researcher, write a function to compute ...
分类:
其他好文 时间:
2020-01-10 00:53:46
阅读次数:
74
Question Given an array of citations (each citation is a non-negative integer) of a researcher, write a function to compute the researcher's h-index. ...
分类:
其他好文 时间:
2020-01-10 00:43:41
阅读次数:
76
tasks:1. review the community detection paper2. formulate your problem and software functions3. Suppose: similar time series tend to connect to each o ...
分类:
编程语言 时间:
2020-01-09 13:23:33
阅读次数:
100
一个例子 public class DemoServer extends Thread { private ServerSocket serverSocket; public int getPort() { return serverSocket.getLocalPort(); } @Overrid ...
分类:
其他好文 时间:
2020-01-09 13:10:33
阅读次数:
73
原题链接在这里:https://leetcode.com/problems/rotting-oranges/ 题目: In a given grid, each cell can have one of three values: the value 0 representing an empty ...
分类:
其他好文 时间:
2020-01-09 10:19:58
阅读次数:
77
Description Polygon is a game for one player that starts on a polygon with N vertices, like the one in Figure 1, where N=4. Each vertex is labelled wi ...
分类:
其他好文 时间:
2020-01-08 21:17:41
阅读次数:
76
记得上次面试的时候,被面试官问了一个问题:foreach循环的原理?当时有点措手不及,确实天天用,熟的不能再署的东西,突然被问原理,一下子就不知道怎么回答了。这里我查阅了一下资料,进行总结一下。 原理: List之所以能使用foreach循环遍历,是因为List都是Collection的子接口,而C ...
分类:
编程语言 时间:
2020-01-08 12:22:46
阅读次数:
70
乐观锁是基于比较的无锁并发控制机制。 CAS mvcc The general idea is this: The general idea is this: Optimistic locking Optimistic locking Each table you want to implement ...
分类:
其他好文 时间:
2020-01-07 18:20:21
阅读次数:
91