由买买提看人间百态

topics

全部话题 - 话题: texted
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
R**e
发帖数: 274
1
来自主题: JobHunting版 - text editor
实现一个 text editor, 选用合适的数据结构,和 解释各种功能怎样实现。
估计占用的内存空间
thanks
y*********e
发帖数: 518
2
来自主题: JobHunting版 - text editor
这个我以前写过一个notepad,大概解释一下数据结构吧。
我用的是C#写的(C#的string跟Java的string一样,是immutable的)。
这个数据结构应该支持如下功能:
1、快速的string读取,写入,以及删除
2、快速的获得某一个字符所在的行列号
3、支持较多的redo、undo
对于第一点要求,传统的string肯定不行,因为每次对string的修改都会产生一个新的
string。StringBuilder也不行,虽然它支持O(1)的Append,但是对于插入和删除最快
的还是O(N)。
考虑到第二点要求,可以用一个改进版的StringBuilder。即,每一行用一个
StringBuilder,然后行与行之间用LinkedList串联起来。这样做是假设每一行字符的
长度不会太长(大概百来个的字符删除O(N)还是很快的),然后行数也不会太长,因为
我们用的LinkedList把行数串联起来,要获得某一行的行号,也是O(N)的操作。
这就是第一版的数据结构,用它就可以实现一个简单的text editor,支持编辑不是很大
的文本文档。
这个数据结构可以改进的。我读了... 阅读全帖
d*****t
发帖数: 41
3
这个可以把给定的n个单词先放到hash table里。
然后从文章开始,每扫一个单词到hash table里找,如果在就把单词和位置放到queue
里,一直到这n个单词都在queue里(有的单词可能出现多次),记下此时cover
distance。这之后每次往queue里加单词的时候,如果检查queue的前端,如果是同一个
单词,就pop。每次pop之后从queue前往后扫描一直扫到queue里只出现一次的元素,把
前面的删除,确保queue里不会所有的单词都出现2遍,同时更新cover distance,一直
到扫完text
貌似用这种方法是,amortized O(n),但是更新queue导致不能保证O(n)
呼唤更好的办法~
m*p
发帖数: 1331
4
来自主题: JobHunting版 - google interview, text mining
how to find out synonyms in a huge text corpus?
e.g, "ruby on rail" and "RoR".
a*****e
发帖数: 4577
5
来自主题: JobHunting版 - 有必要弄个plain text resume吗?
弄一个挺麻烦的而且不好看
我一般就写个see attached pdf resume.
请问大家都有Plain text的resume吗?
l*********8
发帖数: 4642
6
来自主题: JobHunting版 - Text Justification
标点符号算是上一个单词的一部分吗?
哦,输入已经分割好单词了,这里"justification." 是一个单词
words: ["This", "is", "an", "example", "of", "text", "justification."]
l*********8
发帖数: 4642
7
来自主题: JobHunting版 - Text Justification
全部是English text,没有wchar甚至更多字节的字符吧?
l*********8
发帖数: 4642
8
来自主题: JobHunting版 - Text Justification
leetcode,谢谢推荐这个题目。
我发现OnlineJudge的答案有问题。
题目要求:
For the last line of text, it should be left justified and no extra space is
inserted between words.
但是OnlineJudge expected 的答案却是最后一行也有空格。

line
words
l*********8
发帖数: 4642
9
来自主题: JobHunting版 - Text Justification
标点符号算是上一个单词的一部分吗?
哦,输入已经分割好单词了,这里"justification." 是一个单词
words: ["This", "is", "an", "example", "of", "text", "justification."]
l*********8
发帖数: 4642
10
来自主题: JobHunting版 - Text Justification
全部是English text,没有wchar甚至更多字节的字符吧?
l*********8
发帖数: 4642
11
来自主题: JobHunting版 - Text Justification
leetcode,谢谢推荐这个题目。
我发现OnlineJudge的答案有问题。
题目要求:
For the last line of text, it should be left justified and no extra space is
inserted between words.
但是OnlineJudge expected 的答案却是最后一行也有空格。

line
words
r****m
发帖数: 70
12
来自主题: JobHunting版 - Text Justification
先计算可以放的最大单词数,然后在单词中插入空格输出行
public class AdjustText {
static List justifyText(String[] words, int L) {
List result = new ArrayList();

int i = 0;
while (i < words.length) {
List lineWords = new ArrayList();
int curLen = 0;
do {
lineWords.add(words[i]);
curLen += words[i].length() + 1;
i++;
} while (i阅读全帖
p*****2
发帖数: 21240
13
我写了一个,练了练。主要是输出的时候有几个小地方要注意。
def fullJustify(words:Array[String], L:Int)={
process(0)

def process(i:Int):Unit={
val j=getNext(i,0)
if(i {
printSlice(words.slice(i,j))
process(j)
}
}

def printSlice(words:Array[String]):Unit={
if(words.size==1) {println(words(0));return}

val total=words.map(_.length()).sum
val spaces=... 阅读全帖
i*********s
发帖数: 16
14
来自主题: JobHunting版 - Text Mining/NLP Intern Position
We are a company in the Maryland/DC area. We have one intern position in
text mining, natural language processing, and information extraction. Strong
programming skills (e.g., Java, Python, Perl, PHP) are required. Previous
research experience is a plus. Please drop a message for details.
z*******y
发帖数: 68
15
rt
以前用过python nltk做英文的text mining
不知道中文怎么做?
感觉中文会难很多,象tokenize这些该怎么做呢?
谢谢!!
z*******y
发帖数: 68
16
谢谢推荐,我去看看。
想问问在中文text mining的过程中有什么需要特别注意的吗?
d***u
发帖数: 213
17
来自主题: JobHunting版 - 需要准备一份plain text的简历吗?
plain text 是必须准备的,是会直接体现一个求职者的态度。而且格式要弄好。很多
公司需要比如软软。
t**r
发帖数: 3428
18
有人在面试中被问过text justify这种恶心问题么
e*******r
发帖数: 134
19
很不错的机会,项目有前景。欢迎熟悉text mining, information retrieval, deep
learning, 有相关工作经验或研究经验的人士申请。有兴趣者请发简历至hiringshen@
gmail.com。组内急招,申请从速。详情请见:
https://www.linkedin.com/jobs/view/241820255/
e*******r
发帖数: 134
20
很不错的机会,项目有前景。欢迎熟悉text mining, information retrieval, deep
learning, 有相关工作经验或研究经验的人士申请。有兴趣者请发简历至hiringshen@
gmail.com。组内急招,申请从速。详情请见:
https://www.linkedin.com/jobs/view/241820255/
e*******r
发帖数: 134
21
很不错的机会,项目有前景。欢迎熟悉text mining, information retrieval, deep
learning, 有相关工作经验或研究经验的人士申请。有兴趣者请发简历至hiringshen@
gmail.com。组内急招,申请从速。详情请见:
https://www.linkedin.com/jobs/view/241820255/
h*****e
发帖数: 3619
22
This may help some others:
I realized I was charged $9.99 per month for many time through my cell phone
company for a few text messages. It turned out be a company sending out so
-called "information" including news or coupons. I wanted to file a
complaint to the cell phone company. They first tried to tell some excuses
like "it's the third party", "Others charged the cell company, then the cell
company had to charge the customer"... I insisted that since the cell
company collected my money,
g******7
发帖数: 1433
23
最近prepaid的手机不知道怎么回事subscribe 一些收费的text服务,我一般看到就马
上unsubscribe了,但一查账户还是少了几十刀的balance,这些钱一般能要回来么?
m**2
发帖数: 3374
24
RingPlus Future Plan Phase 6 1000/1000/1000 Voice/Text/Data Monthly for Free
Open to New and Existing Members New Line Required
这次Existing Members也可以,但需要new device。
b***p
发帖数: 1398
25
【 以下文字转载自 NextGeneration 讨论区 】
发信人: betep (dongdong), 信区: NextGeneration
标 题: Any English text book for kids around 5 yr old?
发信站: BBS 未名空间站 (Mon Nov 22 11:35:45 2010, 美东)
Friends in China would like to buy
thanks
m**k
发帖数: 18660
26
I think most of Schools do not have text book for K.
though they read a lot
d*c
发帖数: 306
27
儿子马上要10岁生日,说班上半数小孩都在texting, 也问我要个手机。
不知道该不该给他。
w********e
发帖数: 4186
28
理论上,初中高中都不让在学校里面用手机。
看需要吧,如果接孩子什么的需要沟通,可以有一个手机。
texting基本上是不爱学习的孩子的爱好。
这个年龄不能鼓励攀比,有了手机,开始比牌子,当然,一下子就上iphone的就省了后
面的步骤。
a****o
发帖数: 6612
29
Target offers $10 off $50 Grocery/Beverages. Text GROCERY to TARGET (827438)
.
h***o
发帖数: 198
30
7/6-7/12有效,$20 off your entire Target Baby Purchase of $100 or more,Text
INFANT to 827438 to receive this coupon. 转自SD
This coupon includes: Newborn apparel, Furniture, Bedding, Nursery, Training
Pants, Toiletries, Diapers, Wipes, Travel Gear, Baby Toys, Car Seats, Bath
Items, Food, Formula, & all Infant & Toddler Feeding.
Excludes infant & toddler apparel and the Toy Department
b******M
发帖数: 1162
31
Strolle能用这个coupon么

Text
Training
Bath
o******6
发帖数: 9458
32
Text后得到的coupon上写着Expires On 07/04/2014,我直接在店里用的,没试过可不
可以网上使用。
j*****g
发帖数: 7513
33
来自主题: PennySaver版 - text message免费的TX
text HUNGER to 35350, sams club will donate 12 meals to local food bank.
from hip2save.
某天收音机里说 1 in 6 people 不知道下顿饭在哪里,很震惊。
w****r
发帖数: 15252
34
来自主题: PennySaver版 - SYW Text Coupons from 5/8 - YMMV
以下Copy from slickdeal
If you signed up for the SYW text messages and still have the message from 5
/8 make sure to click the link!!!
The message states "Shop Your Way: Summer is around the corner. Get $25 off
$250 Patio Furniture, Grills & Grill Accessories! Click for this & more: __
link__" When you click that link it will take you to another page, click
next. It should then take you to another page full of coupons! Some of the
coupons include:
$5 off a $5+ purchase
$5 off a $10+ purchase (whic... 阅读全帖
I***a
发帖数: 70
35
可以先text stop取消。
M******m
发帖数: 520
36
I just signed up "Shop Your Way" account, and added my cell phone #, then I
did the text msg part, but no link for this special deal shows up in the txt
back from 73277.
Is my account too new to get this offer?
k***r
发帖数: 4260
37
经常查GMail,但是很少查GV里面的短信,也没有设成
发到手机,因为没加text plan。有办法转到email吗?
g***e
发帖数: 5292
38
$45 unlimited voice + text + data, 是at&t网络吗?
请问这家运营商服务如何?比Simple mobile $60 便宜$15.
支持iphone吗?
Walmart有卖$45充值卡的,好象$45要加税.
谢谢!
p********t
发帖数: 7
39
我现在都用text free了
n********e
发帖数: 1789
40
来自主题: shopping版 - Google voice发text message到手机
发现有人留言之后,google voice总是要发text message到手机上面,我的plan里面0.
2$一条短消息。什么地方可以设置把这个取消?实际上只要发email就可以,我有data
plan。谢谢。
a*******w
发帖数: 3805
41
来自主题: shopping版 - Google voice发text message到手机
不是 你说的这个 你说的 是 voicemail啊 再找找看
Receive text messages on this phone
setting 把这个勾 去掉
在关联手机的选项里
e*****t
发帖数: 1005
42
来自主题: shopping版 - unlimited talk + text + web: $22 + tax
找人一起拼t-mobile family plan:
Simple Choice Plan, 5 lines: 50+ 30 + 10*3= 110
unlimited talk
unlimited text
unlimited web ( 500MB 4g speed, 需要更多data的人,可以加10块钱升到2.5GB 4G s
peed.)
免费国际数据漫游,漫游中国电话$0.2 per min
电话、短信、数据都是unlimited,所以不存在谁用多用少的麻烦。
不过需要自带手机,可以要新号码或者transfer老号码。刚买了nexus 5的同学们可以上
啊。
有意者站内联系。
I*****y
发帖数: 6402
43
来自主题: StartUp版 - 被人找上门来做text ads
第一次收到一个来信,说要在我的一个网站上做text ads,此人来自 betterlinkadver
tising.com
而且就只在一个内容页面做,我担心是不是IRS派来的了,呵呵
g********g
发帖数: 2172
44
来自主题: StartUp版 - 被人找上门来做text ads
Google allow webmasters to sell third-party ads. However they think sell
text links without "nofollow" is an manipulation of page rank. If they find
you do so, they will ban your site from Google search. So, if you care about
the traffic from google, do not do so. Normally one link on a PR 4-5 site
rank page can worth 300-700$ per year.
g*****u
发帖数: 14294
45
来自主题: Stock版 - 搞系统的可以加个Text Mining
HTML-based都容易。
JAVA script的不知道咋抓text出来。
C*******r
发帖数: 10345
46
来自主题: Stock版 - MM的text mining科技有多牛?
可以跟踪各处古板,用text mining分析各种贴,根据散户的森提们特,故意设一大堆
陷阱,让散户亏飞。
所以股版也要刻意制造一些反指,让MM的计算出错。
N*****d
发帖数: 9872
47
来自主题: Stock版 - MM的text mining科技有多牛?
只要hedge fund里有中国人,MM没text mining也无所谓
C*******r
发帖数: 10345
48
来自主题: Stock版 - MM的text mining科技有多牛?
村长是搞text mining的?有什么好算法?

twitter
M***n
发帖数: 5815
49
来自主题: Stock版 - MM的text mining科技有多牛?
有针对性的,来探测,比方说故意在热门网站放言论,分析跟贴的倾向,这个是有可能
的。范范的text mining,从语义学的角度看,目前还是很难的。
s***0
发帖数: 525
50
来自主题: Working版 - Popular Text Terms Used in Business
Top 50 Popular Text Terms Used in Business:
AFAIC - As Far As I'm Concerned
ASAP - As Soon As Possible
BHAG - Big Hairy Audacious Goal
BOHICA - Bend Over Here It Comes Again
CLM - Career Limiting Move
CYA - Cover Your Ass -or- See Ya
DD - Due Diligence
DQYDJ - Don't Quit Your Day Job
DRIB - Don't Read If Busy
EOD - End Of Day -or- End Of Discussion
EOM - End Of Message
EOT - End Of Thread (meaning: end of discussion)
ESO - Equipment Smarter than Operator
FRED - F***ing Ridiculous Electronic Devi... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)