自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Felomeng的技术博客

一个旅居美国程序员的心路历程

  • 博客(261)
  • 资源 (79)
  • 收藏
  • 关注

原创 weka入门教程II——分类

读研时转过一篇《weka入门教程》。当时机器学习还没有这么火。Weka其实非常方便,有图形界面,可以识别多种格式,自动切分测试集与训练集等功能。这篇主要介绍图形界面下分类的用法,其他机器学习任务大同小异。weka可以从官方网站下载:https://www.cs.waikato.ac.nz/ml/weka/安装就不说了,安装好后运行,Windows在菜单中可以找到,Linux运行weka.s...

2020-03-06 11:46:38 1711

原创 LeetCode Java First 400 题解-034

Search for a Range MediumGiven an array of integers sorted in ascending order, find the starting and ending position of a given target value.Your algorithm's runtime complexity must be in the o...

2019-11-20 13:08:55 306

原创 LeetCode Java First 400 题解-033

Search in Rotated Sorted Array MediumSuppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand.(i.e.,0 1 2 4 5 6 7might become4 5 6 7 0 1 2).You are giv...

2019-11-20 13:05:32 318

原创 LeetCode Java First 400 题解-032

Longest Valid Parentheses HardGiven a string containing just the characters'('and')', find the length of the longest valid (well-formed) parentheses substring.For"(()", the longest valid pa...

2019-11-19 13:27:21 238

原创 LeetCode Java First 400 题解-031

Next Permutation MediumImplement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.If such arrangement is not possible, it must rearrange...

2019-11-18 11:57:55 235

原创 LeetCode Java First 400 题解-030

Substring with Concatenation of All Words HardYou are given a string,s, and a list of words,words, that are all of the same length. Find all starting indices of substring(s) insthat is a conc...

2019-11-01 06:44:06 263

原创 LeetCode Java First 400 题解-029

Divide Two Integers MediumDivide two integers without using multiplication, division and mod operator.If it is overflow, return MAX_INT.public int divide(int dividend, int divisor) { if...

2019-11-01 06:43:25 206

原创 LeetCode Java First 400 题解-028

Implement strStr()EasyImplement strStr().Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.public int strStr(String haystack, String ne...

2019-11-01 06:42:51 209

原创 LeetCode Java First 400 题解-027

Remove Element EasyGiven an array and a value, remove all instances of that value in place and return the new length.Do not allocate extra space for another array, you must do this in place wit...

2019-11-01 06:42:20 210

原创 LeetCode Java First 400 题解-026

Remove Duplicates from Sorted Array EasyGiven a sorted array, remove the duplicates in place such that each element appear onlyonceand return the new length.Do not allocate extra space for an...

2019-11-01 06:41:45 249

原创 LeetCode Java First 400 题解-025

Reverse Nodes in k-Group HardGiven a linked list, reverse the nodes of a linked listkat a time and return its modified list.kis a positive integer and is less than or equal to the length of ...

2019-11-01 06:41:04 190

原创 LeetCode Java First 400 题解-024

Swap Nodes in Pairs MediumGiven a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2->1->4->3.Your...

2019-11-01 06:39:25 214

原创 LeetCode Java First 400 题解-023

Merge k Sorted Lists HardMergeksorted linked lists and return it as one sorted list. Analyze and describe its complexity.public ListNode mergeKLists(ListNode[] lists) { if (lists == nul...

2019-11-01 06:38:46 184

原创 LeetCode Java First 400 题解-022

Generate Parentheses MediumGivennpairs of parentheses, write a function to generate all combinations of well-formed parentheses.For example, givenn= 3, a solution set is:[ "((()))", ...

2019-11-01 06:38:17 265

原创 LeetCode Java First 400 题解-021

Merge Two Sorted Lists EasyMerge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.public ListNode mergeTwo...

2019-11-01 06:37:41 181

原创 LeetCode Java First 400 题解-020

Valid Parentheses EasyGiven a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid.The brackets must close in the correct order,"()"an...

2019-10-30 00:29:42 185

原创 LeetCode Java First 400 题解-019

Remove Nth Node From End of List MediumGiven a linked list, remove thenthnode from the end of list and return its head.For example, Given linked list: 1->2->3->4->5, and n = ...

2019-10-30 00:28:59 217

原创 LeetCode Java First 400 题解-018

4Sum MediumGiven an arraySofnintegers, are there elementsa,b,c, anddinSsuch thata+b+c+d= target? Find all unique quadruplets in the array which gives the sum of target.Note:...

2019-10-30 00:27:46 295

原创 LeetCode Java First 400 题解-017

Letter Combinations of a Phone Number MediumGiven a digit string, return all possible letter combinations that the number could represent.A mapping of digit to letters (just like on the telepho...

2019-10-30 00:26:55 189

原创 LeetCode Java First 400 题解-016

3Sum Closest MediumGiven an arraySofnintegers, find three integers inSsuch that the sum is closest to a given number, target. Return the sum of the three integers. You may assume that each ...

2019-10-30 00:24:10 121

原创 LeetCode Java First 400 题解-015

3Sum MediumGiven an arraySofnintegers, are there elementsa,b,cinSsuch thata+b+c= 0? Find all unique triplets in the array which gives the sum of zero.Note:The solution set must...

2019-10-30 00:19:15 169

原创 LeetCode Java First 400 题解-014

Longest Common Prefix EasyWrite a function to find the longest common prefix string amongst an array of strings.public String longestCommonPrefix(String[] strs) { if (strs.length == 0)...

2019-10-30 00:17:08 115

原创 LeetCode Java First 400 题解-013

Roman to Integer EasyGiven a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.public int romanToInt(String s) { int sum = 0; if (s....

2019-10-30 00:16:15 183

原创 LeetCode Java First 400 题解-012

Integer to Roman MediumRoman numerals are represented by seven different symbols:I,V,X,L,C,DandM.Symbol ValueI 1V 5X 10L 50...

2019-10-30 00:04:40 187

原创 LeetCode Java First 400 题解-011

Container With Most Water MediumGivennnon-negative integersa1,a2, ...,an, where each represents a point at coordinate (i,ai).nvertical lines are drawn such that the two endpoints of line...

2019-10-30 00:03:32 173

原创 LeetCode Java First 400 题解-010

Regular Expression Matching HardGiven an input string (s) and a pattern (p), implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches ze...

2019-10-26 13:15:09 164

原创 LeetCode Java First 400 题解-009

Palindrome Number EasyDetermine whether an integer is a palindrome. Do this without extra space.Some hints:Could negative integers be palindromes? (ie, -1)If you are thinking of converting ...

2019-10-26 13:00:20 157

原创 LeetCode Java First 400 题解-008

String to Integer (atoi) MediumImplementatoito convert a string to an integer.Hint:Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yours...

2019-10-26 12:48:54 181

原创 LeetCode Java First 400 题解-007

Reverse Integer EasyReverse digits of an integer.Example1:x = 123, return 321Example2:x = -123, return -321click to show spoilers.Have you thought about this?Here are some good question...

2019-10-26 12:43:13 188

原创 LeetCode Java First 400 题解-006

ZigZag Conversion MediumThe string"PAYPALISHIRING"is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better legibility...

2019-10-26 11:22:24 102

原创 北京大学软件与微电子学院08届就业统计

2010就业去向:http://blog.csdn.net/Felomeng/archive/2010/06/11/5662980.aspx61565部队Autodesk Design Software (Shanghai)Co.,LtdAutodesk Design Software(上海)公司BEA公司CA(冠群电脑)GoogleIBMIBMIBMIBMIBMI...

2019-10-23 12:56:59 12746 5

原创 LeetCode Java First 400 题解-005

Longest Palindromic Substring MediumGiven a strings, find the longest palindromic substring ins. You may assume that the maximum length ofsis 1000.Example:Input: "babad"Output: "bab"...

2019-10-23 12:37:35 201

原创 LeetCode Java First 400 题解-004

Median of Two Sorted Arrays HardThere are two sorted arraysnums1andnums2of size m and n respectively.Find the median of the two sorted arrays. The overall run time complexity should be O(lo...

2019-10-23 12:36:47 200

原创 LeetCode Java First 400 题解-003

Longest Substring Without Repeating Characters MediumGiven a string, find the length of thelongest substringwithout repeating characters.Examples:Given"abcabcbb", the answer is"abc", whic...

2019-10-23 12:27:25 177

原创 LeetCode Java First 400 题解 - 002

Add Two Numbers MediumYou are given twonon-emptylinked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add t...

2019-10-23 12:18:27 187

原创 LeetCode Java First 400 题解-001

Two sumGiven an array of integers, returnindicesof the two numbers such that they add up to a specific target.You may assume that each input would haveexactlyone solution, and you may not use ...

2019-10-22 11:44:39 257

转载 Oracle 常用环境变量查询

select SYS_CONTEXT('USERENV','TERMINAL') terminal, SYS_CONTEXT('USERENV','LANGUAGE') language, SYS_CONTEXT('USERENV','SESSIONID') sessionid, SYS_CONTEXT('USERENV','INSTANCE') instance, SYS_CONTEXT('US

2017-08-11 00:39:11 6011

原创 赴美攻略

主要地名了解一下当地的一些主要地各机票购买先找所有可行路线。根据自己情况选择转机与否。在美国第一站需要入关。买票时请买往返票,时间约半年,最好提前一周左右回,以免出现极端天气造成滞留,影响下次入境。因为入关时海关会限定你的入关时间,一般为期半年。样子如下:红色的是入境日期,B1是签证类型(你们应该是B2)。海关可能会把出境日期写在签证类型下面。具体出境日期可以以后在线查询。转机分为两种,美国国内转

2016-11-12 20:59:55 5057

原创 美国签证面签攻略

携带材料:1.        你们的护照。2.        DS-160确认页,每人一份。可能用到姓名电报号(自己记在确认页上即可)3.        签证交费收据4.        给签证官的信(邀请你们来美的证据)5.        我的Offer、工作证、I-797、我的护照和I-94(我的收入和稳定工作证据),王芳的I-94及结婚证6.        亲子关系公证7.        全家

2016-11-12 20:31:05 7519

原创 父母赴美签证办理

本人为(岳)父母准备赴美签证的资料,与大家分享

2016-11-12 20:14:04 7911

水木社区SearchEngine版聚资料

SearchEngine版聚资料,内含搜索一线人物演讲

2009-07-14

Felomeng个人所得税计算器绿色版

本工具可以计算: 工资、薪金所得 个体工商户生产、经营所得 企事业单位的承包经营、承 租经营所得 劳务报酬所得 稿酬所得 特许权使用所得 利息、股息、红利所得 财产租赁所得 财产转让所得 偶然所得(如:中奖、中彩) 被确定征税的其他部分 基本用法总共分三步: 输入收入额; 单击计算按钮; 查看税额和实际收入。 此外,工资、薪金所得需要输入要缴纳的保险额和起征个人所得税的数额(现行法律是2000元)。财产转让所得需要收入财产原价值和合理交易费用。

2009-07-10

Felomeng家庭理财1.13源码

1.xx版设计比较失败,2.xx版本采取了完全不同的架构与理念(虽然界面,使用方法上基本保持了一致)。故1.xx代码不再具有保密的必要,拿出来与大家分享。 这是我来北大软院学习前编写的软件,谈不上设计,学习价值有限,仅供参考。 要运行本软件需要.net2.0和vfp数据库的驱动(可能需要安装vs2003,具体我也不记得了)。慎重下载吧

2009-07-07

Felomeng家庭理财2.1

本软件完全免费,最新版可以从http://www.crsky.com/soft/17276.html下载。 运行本软件,须.net framework3.5支持。 2.0x版本直接升级不会造成数据损失。 ********************* 2.10版升级内容: 1.增加了欢迎屏; 2.增加了用户登录界面和安全管理策略; 3.改善了主界面观感; 4.完善了帮助系统。 理财提示: 1.首次使用,应该把现在家里所有的余额(包括存款、现金等)全部录入系统; 2.以后每笔收入与支出都应该记录。 强大的双重数据备份,保障您的数据安全! *************************** 本软件目的就是家庭理财。鉴于此,本软件没有商用财务软件那样强大的理财功能,但是却具有简单易用的特点,非常适合于普通家庭的日常财务管理。 本软件自2.0版开始,数据格式与1.xx版本不再兼容,采用了全新的数据管理方式,并且对于字段也略有调整。对此给您造成的不便敬请谅解。

2009-07-06

Felomeng家庭理财2.01Windows7专版

专供Windows7用户使用,其它Windows平台请下载完整版或另外安装.net framework 3.5

2009-07-01

CoNLL 2000 语料结果评测perl程序

CoNLL 2000 语料结果评测perl程序

2009-06-22

CoNLL 2000

CoNLL 2000 CRF结果评测perl程序

2009-06-22

CRF++工具包(Linux&Windows版本)0.53

CRF++工具包(Linux&Windows版本)0.53版

2009-06-22

北京大学自然语言处理高级专题(机器学习)课件

北京大学自然语言处理高级专题(机器学习)课件,以专题形式介绍了常用的机器学习算法,深入浅出。 注:内容为英文

2009-06-18

bddbot测试报告(使用方法)

著名开源搜索引擎bddbot的使用方法。

2009-05-10

bddbot及其文档

著名开源搜索引擎,编写语言Java,源代码和相关文档。

2009-05-10

wxWidgets2.8.10和CodeBlocks8.02

wxWidgets2.8.10完全版和CodeBlocks8.02windows安装版(带mingw)

2009-04-20

Thinking in C++ 2nd Edition volume 1 & 2(C++编程思想第二版第一卷&第二卷)附完整源代码

Thinking in C++ 2nd Edition volume 1 & 2(C++编程思想第二版第一卷&第二卷)附完整源代码。 注:与影印版可能不完全相同,因为这是最新更新的版本!

2009-04-19

ikvm-0.38.0.2

将java的.jar文件转化为.net的.exe或dll文件。当然,不止这些功能了。还可以作为虚拟机使用;使java也可以调用.net。 注:这是64位版本。

2009-04-10

ikvm-0.38.0.2

将java的.jar文件转化为.net的.exe或dll文件。当然,不止这些功能了。还可以作为虚拟机使用;使java也可以调用.net。 注:这是32位版本。

2009-04-10

C#向量空间模型改进版

C#向量空间模型改进版,就是实际应用中常用的向量空间模型。

2009-04-09

livbsvm2.88中文文档(readme全译)

将libsvm2.88中的内容翻译成了中文,与大家分享。

2009-04-09

支持向量机工具包libsvm-2.88

支持向量机工具包libsvm-2.88源代码

2009-04-09

Speech and Language Processing 第二版

Speech and Language Processing: An introduction to natural language processing, computational linguistics, and speech recognition. Daniel Jurafsky & James H. Martin. Copyright c 2006, All rights reserved. Draft of June 25, 2007. Do not cite without permission. 推荐另一本书,也很经典: http://download.csdn.net/source/1143057

2009-03-25

自然语言处理方向一些基本的论文

A_Stochastic_Finite-State_Word-Segmentation_Algorithm_for_Chinese.pdf An_efficient_augmented-context-free_parsing_algorithm.pdf An_Efficient_Context_Free_Parsing_Algorithm.pdf Example-based Machine Translation.pdf New_Chances_for_Deep_Linguistic_Processing.pdf Transformation-based_error-driven_learning.pdf tutorial_on_hmm_and_applications.pdf 汉语自动分词研究评述.pdf 计算语言学工作者需要了解的数学知识..pdf 统计语言模型能做什么.pdf

2009-03-25

LeetCode前400题Java精美版

前400题个人笔记。答案为Java编写,原则: 1. 给出的答案多数情况下是最优解(击败99%),少量情况是次优解(最优解太难看)。 2. 多个思路都会给出,可能伴有答案。

2020-10-03

多多五笔98版

五笔98版输入法,使用多多输入法生成器生成。

2013-01-05

C# 无窗体示例程序

C# 无窗体示例程序 想让程序不退出,只要在Main函数的最后添加一句: Application.Run();//不含参数 这样,程序只有在显示调用Application.Exit();时才会退出。

2012-01-02

Clipcode WTL Developer Guide

Clipcode WTL Developer Guide 很好的WTL教程,国外一家培训机构(Clipcode)制作的

2011-05-17

WTL源代码,使用WTL必备资源

WTL源码,可以从http://wtl.sourceforge.net/下载,最好是通过SVN,本版本为2011年4月2日SVN下载

2011-04-03

WTL for MFC Programmers英文版PDF,附演示代码

注意,是英文版!排版比较好,附演示代码 Part I - ATL GUI Classes Part II - WTL GUI Base Classes Part III - Toolbars and Status Bars Part IV - Dialogs and Controls Part V - Advanced Dialog UI Part VI - Hosting ActiveX Controls Part VII - Splitter Windows Part VIII - Property Sheets and Wizards Part IX - GDI Classes, Common Dialogs, and Utility Classes Part X - Implementing a Drag and Drop Source

2011-04-02

ATL Internals PDF 英文版

ATL\ATL Internals PDF英文版

2011-04-02

Programming Windows with MFC, second editon

Programming Windows with MFC, second editon英文版,很好的MFC教材,与Programming Windows(windows程序设计)是姊妹篇,windows程序设计第五版(英文版)下载地址:http://download.csdn.net/source/3140159

2011-04-02

windows程序设计第五版(英文版)Felomeng整理版

注意,此乃英文版。 本书为Windows编程入门经典之作!虽然历经十余寒暑,依然魅力不减,仍是Windows编程最好的入门教材。 而翻译版本又大多不能尽其意,还是看英文的好。 因网上现流传的1233页的版本排版极差,严重影响了阅读。而chm版对眼睛又不太好,固本人对其进行了一定整理,现发布PDF版,便于查看和学习。 有人说,想让我给翻译一遍。我也想,不过这个工作量太巨大了,我是一时半会抽不出这么长的时间。英语的也不难,还是看英文的吧

2011-03-30

google c++ style guide PDF版(带目录及标签目录)

google c++ style guide,也叫google c++ 风格指南或google c++ 编码规范。 注意,是英文版。 带目录及标签目录。

2011-03-15

windows核心编程(第五版)英文版PDF

windows核心编程(第五版)英文版PDF版 基于CHM加工制作,不过看起来方便多了。重要的是:可以在电纸书上看!

2011-03-12

《C#入门经典2010》英文版

《C#入门经典2010》Begining Visual c_sharp 2010

2010-12-16

《ASP.NET高级编程》英文版

Wrox.Professional.ASP.NET.4.in.CSharp.and.VB.Mar.2010 《ASP.NET高级编程》英文版……

2010-12-16

完美网页设计艺术(照片版)

完美网页设计艺术(照片版),还不错 适合网页美工入门时启发灵感

2010-06-07

Felomeng家庭理财2.23

Felomeng家庭理财2.23,简单易用的理财软件

2010-05-17

ibus Linux下的五笔98码表文件

相关使用方法见本人博客http://blog.csdn.net/Felomeng/archive/2010/04/02/5444231.aspx

2010-04-02

Liblinear库文件

Liblinear库文件,可用于Weka,数据量大时替代LibSVM。附一些参考资料

2010-01-15

weka3.6的jar及libsvm.jar和wlsvm.jar

使用weka封装libsvm并在程序中调用所需要的三个文件

2009-10-17

Designing.Interfaces

Designing.Interfaces英文版,CHM格式。 提醒:chm格式的文件及路径名中如果含有中文可能无法使用,请更改为全部英文路径和文件名。

2009-07-30

条件随机场识别命名实体实验

条件随机场识别命名实体实验材料、过程及报告

2009-07-21

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除