资源简介
数据结构与算法.zip
代码片段和文件信息
// Introduced in Chapter 13
/** Searches for a pattern String in various text Strings. */
public abstract class AbstractStringMatcher {
/** The pattern being sought. */
private String pattern;
/** Pattern is the pattern being sought. */
public AbstractStringMatcher(String pattern) {
this.pattern = pattern;
}
/** Return the pattern this StringMatcher seeks. */
protected String getPattern() {
return pattern;
}
/** Return true if the pattern appears in text at position. */
protected boolean matchAt(String text int position) {
for (int i = 0; i < pattern.length(); i++) {
if (pattern.charAt(i) != text.charAt(i + position)) {
return false;
}
}
return true;
}
/**
* Return the index of the first appearance of the pattern in
* text or -1 if it does not appear.
*/
public abstract int match(String text);
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-03-13 17:46 数据结构与算法\
文件 105472 2006-03-15 18:01 数据结构与算法\chapter1.doc
文件 55808 2006-03-15 19:53 数据结构与算法\chapter10.doc
文件 55808 2006-03-15 20:06 数据结构与算法\chapter11.doc
文件 57856 2006-03-15 20:23 数据结构与算法\chapter12.doc
文件 31232 2006-03-15 20:25 数据结构与算法\chapter13.doc
文件 44032 2006-03-15 20:36 数据结构与算法\chapter14.doc
文件 60928 2006-03-15 20:49 数据结构与算法\chapter15.doc
文件 46592 2006-03-15 21:01 数据结构与算法\chapter16.doc
文件 43520 2006-03-15 21:08 数据结构与算法\chapter17.doc
文件 71168 2006-03-15 18:14 数据结构与算法\chapter2.doc
文件 33280 2006-03-15 18:18 数据结构与算法\chapter3.doc
文件 41984 2006-03-15 18:34 数据结构与算法\chapter4.doc
文件 51712 2006-03-15 18:47 数据结构与算法\chapter5.doc
文件 68096 2006-03-15 19:00 数据结构与算法\chapter6.doc
文件 62976 2006-03-15 19:26 数据结构与算法\chapter7.doc
文件 35328 2006-03-15 19:32 数据结构与算法\chapter8.doc
文件 44032 2006-03-15 19:42 数据结构与算法\chapter9.doc
文件 17136168 2011-02-22 14:53 数据结构与算法\Data+Structures+and+Algorithms+in+Java.chm
目录 0 2015-03-13 17:46 数据结构与算法\PPT\
文件 702976 2006-03-15 22:03 数据结构与算法\PPT\Chapter 1 Encapsulation.ppt
文件 887808 2006-03-15 22:37 数据结构与算法\PPT\Chapter 10 Trees.ppt
文件 1057792 2006-03-15 22:39 数据结构与算法\PPT\Chapter 11 Sets.ppt
文件 981504 2006-03-15 22:42 数据结构与算法\PPT\Chapter 12 Advanced Linear Structures.ppt
文件 653312 2006-03-15 22:44 数据结构与算法\PPT\Chapter 13 Strings.ppt
文件 1705984 2006-03-15 22:50 数据结构与算法\PPT\Chapter 14 Advanced Trees.ppt
文件 1337344 2006-03-15 22:57 数据结构与算法\PPT\Chapter 15 Graphs.ppt
文件 772096 2006-03-15 22:58 数据结构与算法\PPT\Chapter 16 Memory Management.ppt
文件 1872384 2006-03-15 23:01 数据结构与算法\PPT\Chapter 17 Out to the Disk.ppt
文件 617984 2006-03-15 22:04 数据结构与算法\PPT\Chapter 2 Polymorphism.ppt
文件 424960 2015-03-13 17:35 数据结构与算法\PPT\Chapter 3 Inheritance.ppt
............此处省略89个文件信息
相关资源
- 927迅游破解版.rar
- VisualAssistX.rar
- _CD_源代码.zip
- isd.rar
- GAT1400-2017公安视频图像信息应用系统
- 深度学习.mobi.zip
- PMBOK第六版_中文版带完整目录.pdf
- Location.rar
- grlqsmile_10388665.zip
- 微擎2.0商业版.zip
- 50个著名木马源码灰鸽子冰河广外女生
- gadm36_CHN_shp.zip
- 电路第五版高清.pdf
- HelloWorldDetailEarth3DEngine.pptx
- dyy2546950781_9493974.pdf
- 微博淘宝客软件破解版.zip
- 20307218鸟哥的Linux私房菜第四版高清完
- Grokking-Deep-Learning-master.zip
- messDemo.rar
- 交通咨询管理系统.rar
- 微擎微赞通用功能模块米花同城社区
- eric6_17_12及汉化文件.zip
- Compressedfile.7z
- ANSYSWorkbench设计、仿真与优化[扫描版
- 微擎商业版框架1.8.2.3破解版版.zip
- 算法第4版红皮书可复制版pdf.zip
- KotlininAction中文扫描版.rar
- ADS2011地址及详细破解方法.zip
- 微擎1.6.7.zip
- workspace.rar
评论
共有 条评论