- 浏览: 572082 次
- 性别:
- 来自: 北京
最新评论
-
w592376568:
博主:添加后修改索引后,如何实现实时搜索啊??
Lucene5学习之LuceneUtils工具类简单封装 -
mohaoyang:
同意12楼的说法,close方法,单例的意义如何,每次clos ...
Lucene5学习之LuceneUtils工具类简单封装 -
kingxianstar:
8837One_day 写道你好作者,所有的配置文件都配置了, ...
跟益达学Solr5之增量索引MySQL数据库表数据 -
yingyong01:
...
跟益达学Solr5之拼音分词[改进版] -
8837One_day:
你好作者,所有的配置文件都配置了,在数据库中也添加新的一条数据 ...
跟益达学Solr5之增量索引MySQL数据库表数据
文章列表
何谓专有名词,即表示特定人、物、机构或场所的名词,一般专有名词的首字母大写,比如Paris、Bill Gates、United States。专有名词可以分为以下几类:
人名或头衔
the Queen of England、Winston Churchill、the President of the United States、Doctor Mathews
著作名称
War and Peace
The Merchant of Venice
Pride and Prejudice
月份
January、February、March、April、May、June、 ...
只能修饰可数名词的:
a large/ great/ good number of,
a good/ great many,
dozens of,
scores of,
quite a few
只能修饰不可数名词的:
a great deal of,
a large amount of,
quite a little,
a large sum of
1.1 名词复数的规则变化 1.一般情况 加 -s 清辅音后读
英语国际音标表(48个)
元音(20个)
长元音
/ɑ:/ /ɔ:/ / ɜ:/ /i:/ /U:/
短元音
/ʌ/ /ɒ/ /ə/ /ɪ/ /ʊ/
/e/ /æ/ /eɪ/ /aɪ/ /ɔɪ/
双元音
/ɪə/ /eə/ /ʊə/ /əʊ/ /aʊ/
辅音
p b t d k ɡ ʧ
[ʒ] 嗯鸡儿
version 美式发音 ver静
[θ] 咬着舌头 发 "丝"音
[s] 直接发 "丝"音,不需要咬着舌头
[∫] 有点像 “西”音,但是是靠气流成音,不震动声带
[ð] 嗯遮 发音时声带必须震动
[dʒ] 嗯家 发音时声带必须震动
/ts/ 次 发音时声带不震动
/dz/ 子 发音时声带需要震动
题设:
/**
* Created by Lanxiaowei
* Craated on 2016/12/13 9:46
* 从一个无序的数字序列中查找出前K个最大的数字,
* 要求返回的K个数字在目标无序数组中是前K个最大的,但是不要求这前K个数字是有序的
* 比如:8 9 5 0 6 2 7 1 4 3 且K = 5,那么最终应该返回
* 9 8 7 6 5 或者 6 5 8 7 9
*/
public class TopKProblems {
public static void main(String[] args) {
...
package tree.binarytree;
import java.util.LinkedList;
import java.util.Queue;
import java.util.Random;
import java.util.Stack;
/**
* Created by Lanxiaowei
* Craated on 2016/12/12 17:14
* 采用二叉排序树的中序遍历实现对一个无序的数字序列进行排序
*/
public ...
package tree.binarytree;
import java.util.Random;
/**
* Created by Lanxiaowei
* Craated on 2016/12/12 17:14
* 判断给定的一个数字x是否在指定的一个无序的数字序列中存在
* 采用二叉排序树方式实现
*/
public class TestBinarySortTree {
public static void main(String[] args) {
//测试100次
test(100);
} ...
package tree.binarytree;
/**
* Created by Lanxiaowei
* Craated on 2016/12/12 13:51
* 判断给定的一个数字x是否在指定的一个有序的数字序列中存在
* 采用二分查找方式实现
*/
public class Test4 {
public static void main(String[] args) {
int x = 16;
int[] array = {1,2,3,4,5,6,7,8,9,10};
boolean ex ...
package tree.binarytree;
/**
* Created by Lanxiaowei
* Craated on 2016/12/12 13:51
* 判断给定的一个数字x是否在指定的一个有序的数字序列中存在
* 采用递归方式实现
*/
public class Test3 {
public static void main(String[] args) {
int x = 16;
int[] array = {1,2,3,4,5,6,7,8,9,10};
boolean exis ...
package queue;
import java.util.concurrent.ConcurrentLinkedDeque;
/**
* Created by Lanxiaowei
* Craated on 2016/12/12 9:03
* 求解杨辉三角的第K层的所有元素
* 使用队列求解
*/
public class YHTriangleWithQueue {
public static void main(String[] args) throws InterruptedException {
int k = 6;
...
package stack;
import java.util.Stack;
/**
* Created by Lanxiaowei
* Craated on 2016/12/11 14:13
* 检测括号是否成对出现
* 可以将检测到左括号抽象成入栈操作,检测到右括号抽象成出栈操作,
* 左右括号成对出现刚好可以抽象成入栈出栈操作,也就是说只要最后
* 栈为空,则表明括号是全部成对出现的.
*/
public class Test3 {
public static void main(String[] args) {
...
package stack;
import java.util.Stack;
/**
* Created by Lanxiaowei
* Craated on 2016/12/11 17:29
* 使用栈计算表达式值
*/
public class EvaluateExpression {
public static void main(String[] args) {
String exp = "(1+2+3)*10-2*2-6*2";
int result = calculate(exp); ...
package primenumber.s1;
/**
* Created by Lanxiaowei
* Craated on 2016/12/10 21:53
* 求出[1,n]之间的所有素数
* 最原始的做法
*/
public class TestPrimeNumber {
//统计遍历的次数
private static int opsNum = 0;
public static void main(String[] args) {
//假设求1-100以内的所有素数
int n = 1 ...
/*
* Copyright (c) 1994, 2010, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package java.lang;
import java.io.ObjectStreamField;
import java.io.UnsupportedEncodingException;
import java.nio.charset.Charset;
imp ...