Github项目地址:https://github.com/bravedreamer/wordCount/tree/master/wc 一、题目描述: Word Count1. 实现一个简单而完整的软件工具(源程序特征统计程序)。2. 进行单元测试、回归测试、效能测试,在实现上述程序的过程中使用相关 ...
分类:
其他好文 时间:
2020-03-24 13:10:45
阅读次数:
69
github 代码地址:https://github.com/1471104698/wc 1、题目描述 Word Count1. 实现一个简单而完整的软件工具(源程序特征统计程序)。2. 进行单元测试、回归测试、效能测试,在实现上述程序的过程中使用相关的工具。3. 进行个人软件过程(PSP)的实践, ...
分类:
其他好文 时间:
2020-03-21 21:27:03
阅读次数:
70
1.Github项目地址 https://github.com/ZJHqs/WC 2.实现程序前,模块开发预计时间 PSP2.1Personal Software Process Stages预估耗时(分钟)实际耗时(分钟) Planning 计划 60 30 Estimate 估计这个任务需要多少 ...
分类:
其他好文 时间:
2020-03-15 09:49:43
阅读次数:
56
<template> <div class="home"> <!-- {{this.$store.state.count}} --> <!-- 这里的count1是从index.js里面的state里面拿出来的 --> {{count1}} <!-- 可以在事件后面传参数,比如数字1 --> <bu ...
分类:
其他好文 时间:
2019-12-11 21:45:16
阅读次数:
84
#include <stdio.h>int main (){ int a,b,c,k,count1,count2; for(a=4;a<=1200;a=a+2){ for(b=2;b<=a/2;b++){ count1=0; for(c=2;c<=b-1;c++){ if(b%c==0) count ...
分类:
其他好文 时间:
2019-10-13 11:07:19
阅读次数:
67
1. 转百分比 2.转int js中 转int var ss=parseInt(list[i].count1)+Number(list[i].count2); parseInt 和Number 都可以 区别 var str1='00100'; alert( Number(str1) ); //得到1 ...
分类:
其他好文 时间:
2019-05-27 10:38:34
阅读次数:
129
public class LetterAndNumberCount { public static void main(String[] args) { Count("FJJgjsgfsd543632"); count1("SFsefgdg2354354fsdf"); } public static... ...
分类:
其他好文 时间:
2018-11-26 20:01:09
阅读次数:
384
概述如下:‘.’代表任意字符,‘*’代表前一个字符0或多个,输入一个模式串,一个字符串,返回是否匹配 最初的思路:遍历字符串,遇上‘.’,跳过到下一位置,遇上‘*’则先统计字符串的重复个数count1,然后统计‘*’后的相同字符的重复个数count2,如果count1>=count2的情况下,是可以 ...
分类:
其他好文 时间:
2018-11-11 10:54:50
阅读次数:
166
#include<iostream> #include<cmath> int main(){ int n,m; long a[100][100]; while(scanf("%d%d",&n,&m)!=EOF){ int max=0,count1=0,count2=0; for(int i=1;i< ...
分类:
其他好文 时间:
2018-10-07 14:35:18
阅读次数:
106
1 class Solution { 2 public void sortColors(int[] nums) { 3 if(nums == null || nums.length == 0) return; 4 int count0 = 0; 5 int count1 = 0; 6 int cou... ...
分类:
其他好文 时间:
2018-09-15 13:07:24
阅读次数:
153