目录
php英文单词统计器,
英文文档单词统计 Statistics on English words
首页 后端开发 php教程 php英文单词统计器,_PHP教程

php英文单词统计器,_PHP教程

Jul 12, 2016 am 08:49 AM
php 统计

php英文单词统计器,

本文实例为大家分享了英文单词统计器php 实现,供大家参考,具体内容如下

程序开始运行, 按"浏览"钮选择一个英文文档, 再按"统计 Statistics"钮, 即可得到按字母顺序列出的所有单词,及其出现的次数
用于测试的数据文档: data.txt
驱动程序:word.php
output.php 和 StringTokenizer.php 是 要求在同一个文件夹中的程序
1. words_statistics_PHP.png   

2. word.php

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

<html>

<style>

td{

  background-color:#CF6;

  width:100px;

  margin:5px;

}

</style>

<body>

<&#63;php

/**

 * 程序开始运行, 按"浏览"钮选择一个英文文档, 再按"统计"钮,

 * 即可得到按字母顺序列出的所有单词,及其出现的次数

 *

 * 作者: 许同春 author Tongchun Xu

 * @开源中国 Open Source, Chna communiity

 * 完成日期:2016年6月10日 completion date: 10 June, 2016

 */

  

require("StringTokenizer.php");

require("output.php");

  if($_POST['submit']){

  if ($_FILES["file"]["error"] > 0)

  echo "Error: " . $_FILES["file"]["error"] . "<br />";

  else {

$myfile = fopen($_FILES["file"]["tmp_name"], "r") or die("Unable to open file!");

$str = fread($myfile,filesize($_FILES["file"]["tmp_name"]));

$delim = "&#63;\\,. /:!\"()\t\n\r\f%";

$st = new StringTokenizer($str, $delim);

echo '找到字符串: '.$st->countTokens();

$list=new LinkedList();

 while ($st->hasMoreTokens()) {

 $list->orderInsert($st->nextToken());

 }

$list->words_count();

$list->traversal();

fclose($myfile);

  }

}

&#63;>

<h2 id="英文文档单词统计-Statistics-on-English-words">英文文档单词统计 Statistics on English words </h2>

<p>程序开始运行, 按"浏览"钮选择一个英文文档, 再按"统计 Statistics"钮,

 即可得到按字母顺序列出的所有单词,及其出现的次数 </p>

  

<form action="word.php" method="post"

enctype="multipart/form-data">

<label for="file">英文文档名 File Name:</label>

<input type="file" name="file" id="file" />

<input type="submit" name="submit" value="统计 Statistics" />

</form>

</body>

</html>

登录后复制

3. output.php

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

<meta charset="utf-8" />

<&#63;

/**

 * The class LinkedList allows an application to store strings in

 * alphabetical order by calling orderInsert().

 * 此处定义的 LinkedList 类,可以调用它的 方法 orderInsert(),来以字母

 * 大小的顺序储存 英文字符串。

 * 同时记录 英文单词出现的次数

 * 作者: 许同春 author Tongchun Xu

 * @开源中国 Open Source, China communiity

 * 完成日期:2016年6月10日 completion date: 10 June, 2016

 */

class Node{

  public $data;

  public $frequency;

  public $next;

  function __construct($data, $next = null, $frequency = 1){

    $this->data = $data; //英文字符串

    $this->next = $next; //指向后继结点的指针

    $this->frequency=$frequency; //英文字符串出现的次数

  

}

  

class LinkedList{

  private $head; //单链表的头结点,不存储数据

 function __construct(){//单链表的构造方法

  //头结点的数据为"傀儡", 不代表 任何数据

  $this->head = new Node("dummy 傀儡");

  $this->first = null;

  }

  

 function isEmpty(){

    return ($this->head->next == null);

  

/* orderInsert($data) 方法,

 * 按给定字符串 $data 的大小, 将其安插到适当的位置, 

 * 以保证单链表中字符串的存储,始终是有序的。

 */

 function orderInsert($data){

  $p = new Node($data); 

  if($this->isEmpty()){

    $this->head->next = $p;

  }

  else {

  $node= $this->find($data);

  if(!$node){

  $q = $this->head;

  while($q->next != NULL && strcmp($data, $q->next->data)> 0 ){

  $q = $q->next;

    }

    $p->next = $q->next;

    $q->next = $p;

  }else

  $node->frequency++;

  }

 }

  

 function insertLast($data){//将字符串插到单链表的尾部

  $p = new Node($data);

    

  if($this->isEmpty()){

    $this->head->next = $p;

  }

  else{

    $q = $this->head->next;

    while($q->next != NULL)

      $q = $q->next;

    $q->next = $p;

  }  

}

  

  function find($value){//查询是否有给定的字符串

    $q = $this->head->next;

    while($q->next != null){

    if(strcmp($q->data,$value)==0){

        break;

      }

      $q = $q->next; 

    }

    if ($q->data == $value)

    return $q;

    else

    return null;

  }

  

  function traversal(){//遍历单链表

    if(!$this->isEmpty()){

    $p=$this->head->next;

    echo "输出结果:<table><tr>";

    echo "<td>".$p->data."<br>出现次数:".$p->frequency."</td>";

    $n=1;

    while($p->next != null){

      $p=$p->next;

      echo "<td>".$p->data."<br>出现次数:".$p->frequency."</td>";

      $n++;

      if ($n%11==0) echo "</tr><tr>";

      }

        

      echo "</tr></table>";     

    }else

    echo "链表为空!";

  }

    

    

  function words_count(){

  if($this->isEmpty())

  echo "<br>没有储存字符串 <br>";

    else{

  $counter=0;

  $p=$this->head->next;

  while($p->next != null){

  $p=$p->next;

  $counter++;

      };

  echo "***共有单词 ".$counter." 个***";

    }

  }}

&#63;>

登录后复制

4. StringTokenizer.php

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

<&#63;php

  

/**

 * The string tokenizer class allows an application to break a string into tokens.

 *

 * @author Azeem Michael

 * @example The following is one example of the use of the tokenizer. The code:

 * <code>

 * <&#63;php

 * $str = "this is:@\t\n a test!";

 * $delim = " !@:'\t\n\0"; // remove these chars

 * $st = new StringTokenizer($str, $delim);

 * echo 'Total tokens: '.$st->countTokens().'<br/>';

 * while ($st->hasMoreTokens()) {

 * echo $st->nextToken() . '<br/>';

 * }

 * prints the following output:

 * Total tokens: 4

 * this

 * is

 * a

 * test

 * &#63;>

 * </code>

 */

class StringTokenizer {

  

  /** @var string

   */

  private $string;

  

  /** @var string

   */

  private $token;

  

  /** @var string

   */

  private $delim;

  

  /**

   * Constructs a string tokenizer for the specified string.

   * @param string $str String to tokenize

   * @param string $delim The set of delimiters (the characters that separate tokens)

   * specified at creation time, default to " \n\r\t\0"

   */

  public function __construct($str, $delim=" \n\r\t\0") {

    $this->string = $str;

    $this->delim = $delim;

    $this->token = strtok($str, $delim);

  }

  

  /**

   * Destructor to prevent memory leaks

   */

  public function __destruct() {

    unset($this);

  }

  

  /**

   * Calculates the number of times that this tokenizer's nextToken method can

   * be called before it generates an exception

   * @return int - number of tokens

   */

  public function countTokens() {

    $counter = 0;

    while($this->hasMoreTokens()) {

      $counter++;

      $this->nextToken();

    }

    $this->token = strtok($this->string, $this->delim);

    return $counter;

  }

  

  /**

   * Tests if there are more tokens available from this tokenizer's string. It

   * does not move the internal pointer in any way. To move the internal pointer

   * to the next element call nextToken()

   * @return boolean - true if has more tokens, false otherwise

   */

  public function hasMoreTokens() {

    return ($this->token !== false);

  }

  

  /**

   * Returns the next token from this string tokenizer and advances the internal

   * pointer by one.

   * @return string - next element in the tokenized string

   */

  public function nextToken() {

    $hold = $this->token; //hold current pointer value

    $this->token = strtok($this->delim); //increment pointer

    return $hold; //return current pointer value

  }

}

&#63;>

登录后复制

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持帮客之家。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1136610.htmlTechArticlephp英文单词统计器, 本文实例为大家分享了英文单词统计器php 实现,供大家参考,具体内容如下 程序开始运行, 按"浏览"钮选择一个英文...
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

Video Face Swap

Video Face Swap

使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

热门话题

Java教程
1664
14
CakePHP 教程
1423
52
Laravel 教程
1317
25
PHP教程
1268
29
C# 教程
1245
24
在PHP API中说明JSON Web令牌(JWT)及其用例。 在PHP API中说明JSON Web令牌(JWT)及其用例。 Apr 05, 2025 am 12:04 AM

JWT是一种基于JSON的开放标准,用于在各方之间安全地传输信息,主要用于身份验证和信息交换。1.JWT由Header、Payload和Signature三部分组成。2.JWT的工作原理包括生成JWT、验证JWT和解析Payload三个步骤。3.在PHP中使用JWT进行身份验证时,可以生成和验证JWT,并在高级用法中包含用户角色和权限信息。4.常见错误包括签名验证失败、令牌过期和Payload过大,调试技巧包括使用调试工具和日志记录。5.性能优化和最佳实践包括使用合适的签名算法、合理设置有效期、

php程序在字符串中计数元音 php程序在字符串中计数元音 Feb 07, 2025 pm 12:12 PM

字符串是由字符组成的序列,包括字母、数字和符号。本教程将学习如何使用不同的方法在PHP中计算给定字符串中元音的数量。英语中的元音是a、e、i、o、u,它们可以是大写或小写。 什么是元音? 元音是代表特定语音的字母字符。英语中共有五个元音,包括大写和小写: a, e, i, o, u 示例 1 输入:字符串 = "Tutorialspoint" 输出:6 解释 字符串 "Tutorialspoint" 中的元音是 u、o、i、a、o、i。总共有 6 个元

解释PHP中的晚期静态绑定(静态::)。 解释PHP中的晚期静态绑定(静态::)。 Apr 03, 2025 am 12:04 AM

静态绑定(static::)在PHP中实现晚期静态绑定(LSB),允许在静态上下文中引用调用类而非定义类。1)解析过程在运行时进行,2)在继承关系中向上查找调用类,3)可能带来性能开销。

什么是PHP魔术方法(__ -construct,__destruct,__call,__get,__ set等)并提供用例? 什么是PHP魔术方法(__ -construct,__destruct,__call,__get,__ set等)并提供用例? Apr 03, 2025 am 12:03 AM

PHP的魔法方法有哪些?PHP的魔法方法包括:1.\_\_construct,用于初始化对象;2.\_\_destruct,用于清理资源;3.\_\_call,处理不存在的方法调用;4.\_\_get,实现动态属性访问;5.\_\_set,实现动态属性设置。这些方法在特定情况下自动调用,提升代码的灵活性和效率。

PHP和Python:比较两种流行的编程语言 PHP和Python:比较两种流行的编程语言 Apr 14, 2025 am 12:13 AM

PHP和Python各有优势,选择依据项目需求。1.PHP适合web开发,尤其快速开发和维护网站。2.Python适用于数据科学、机器学习和人工智能,语法简洁,适合初学者。

PHP行动:现实世界中的示例和应用程序 PHP行动:现实世界中的示例和应用程序 Apr 14, 2025 am 12:19 AM

PHP在电子商务、内容管理系统和API开发中广泛应用。1)电子商务:用于购物车功能和支付处理。2)内容管理系统:用于动态内容生成和用户管理。3)API开发:用于RESTfulAPI开发和API安全性。通过性能优化和最佳实践,PHP应用的效率和可维护性得以提升。

PHP:网络开发的关键语言 PHP:网络开发的关键语言 Apr 13, 2025 am 12:08 AM

PHP是一种广泛应用于服务器端的脚本语言,特别适合web开发。1.PHP可以嵌入HTML,处理HTTP请求和响应,支持多种数据库。2.PHP用于生成动态网页内容,处理表单数据,访问数据库等,具有强大的社区支持和开源资源。3.PHP是解释型语言,执行过程包括词法分析、语法分析、编译和执行。4.PHP可以与MySQL结合用于用户注册系统等高级应用。5.调试PHP时,可使用error_reporting()和var_dump()等函数。6.优化PHP代码可通过缓存机制、优化数据库查询和使用内置函数。7

PHP的持久相关性:它还活着吗? PHP的持久相关性:它还活着吗? Apr 14, 2025 am 12:12 AM

PHP仍然具有活力,其在现代编程领域中依然占据重要地位。1)PHP的简单易学和强大社区支持使其在Web开发中广泛应用;2)其灵活性和稳定性使其在处理Web表单、数据库操作和文件处理等方面表现出色;3)PHP不断进化和优化,适用于初学者和经验丰富的开发者。

See all articles