- 授权协议: MIT
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: https://github.com/shekhargulati/strman-java
- 软件文档: https://github.com/shekhargulati/strman-java
软件介绍
Strman 库的Java 实现,Strman是无任何依赖的string操作库,前后端通用。
Maven中配置pom.xml:
<dependencies> <dependency> <groupId>com.shekhargulati</groupId> <artifactId>strman</artifactId> <version>0.2.0</version> </dependency> </dependencies>
使用示例:
import static strman.Strman.append
append("f", "o", "o", "b", "a", "r")
// result => "foobar"
import static strman.Strman.appendArray
appendArray("f", new String[]{"o", "o", "b", "a", "r"}
// result => "foobar"
Handbook of Data Structures and Applications
Dinesh P. Mehta / Chapman and Hall/CRC / 2004-10-28 / USD 135.95
In the late sixties, Donald Knuth, winner of the 1974Turing Award, published his landmark book The Art of Computer Programming: Fundamental Algorithms. This book brought to- gether a body of kno......一起来看看 《Handbook of Data Structures and Applications》 这本书的介绍吧!
