摘要:
Welcome to the Xapian project website. 欢迎来到Xapian项目的网站。Xapian is an Open Source Search Engine Library, released under the GPL. It's written in C++, wi... 阅读全文
摘要:
C#的一个简单函数。 using System; using System.Collections.Generic; using System.Text; using System.Net.Sockets; namespace Cross3389 { class Program { sta... 阅读全文
摘要:
一、Java的哈希算法 public static int JavaHash(string key) { int hashCode = 0; for (int i = 0; i < key.Length; i++) { hashCode = 31 * hashCode + key[i]... 阅读全文