原创 Ron Patton軟件測試習題:黑盒測試、白盒測試

以下內容大部分來自 ron-patton-software-testing PART II Testing Fundamentals Chapter 4 Examining the Specification 1. Can a s

原创 Ron Patton軟件測試習題:自動化測試、Bug Bashes、Beta Testing

以下內容大部分來自 ron-patton-software-testing PART IV Supplementing Your Testing Chapter 14 Automated Testing and Test Tool

原创 數據挖掘習題彙總:線性迴歸、KNN、K-means、決策樹、關聯規則

文章目錄作業清單(4/20)作業清單(4/22)csv、線性迴歸【3】 思考最大似然估計MLE和最小二乘之間的關係?作業清單(4/29、5/4)實驗報告1. 一元迴歸——通過面積預測房價2. 建立多元迴歸模型——波士頓房價預測數據

原创 Ron Patton軟件測試習題:配置測試、兼容性測試、外語測試、可用性測試文檔測試、網站測試

以下內容大部分來自 ron-patton-software-testing PART III Applying Your Testing Skills Chapter 8 Configuration Testing 1. comp

原创 Ron Patton軟件測試習題:概述

http://food.whistleblower.org/software_testing_ron_patton.pdf Chapter 1 Software Testing Background 1. In the Year

原创 Ron Patton軟件測試習題:編寫測試文檔

以下內容大部分來自 ron-patton-software-testing PART V Working with Test Documentation Chapter 16 Planning Your Test Effort 1

原创 java字符替換

題目描述 請實現一個函數,將一個字符串中的每個空格替換成“%20”。例如,當字符串爲We Are Happy.則經過替換之後的字符串爲We%20Are%20Happy。 代碼 public class Solution {

原创 系統分析技術簡單介紹

上一篇:業務分析 What Is Systems Analysis ● Systems analysis - a problem-solving technique that decomposes a system into it

原创 4 AI基礎:超越經典搜索算法

文章目錄4.1 Classical Search 經典搜索4.2 Local Search Algorithms(局部搜索算法)Basic idea:Methods of Local Search(1)Hill-climbing

原创 以學生信息管理系統爲例,學習軟件分析與設計

文章目錄Understand the Context 瞭解範圍The RequestThe most important problemsDevelopment approachThe Project Management Lif

原创 java二維數組的查找

題目描述 在一個二維數組中(每個一維數組的長度相同),每一行都按照從左到右遞增的順序排序,每一列都按照從上到下遞增的順序排序。請完成一個函數,輸入這樣的一個二維數組和一個整數,判斷數組中是否含有該整數 代碼 public clas

原创 4 軟件業務分析要點

Project Scope VS System Boundary Business Analysis I/O of Business Analysis Activities in Business Analysis ● R

原创 配置測試簡單介紹

Configuration testing definition: Configuration testing is the process of checking the operation of the software yo

原创 二叉樹遍歷(先序、中序、後序的區別)

先序、中序、後序三種遍歷方法的節點訪問順序一致,得到的結果卻不一樣,原因在於: 先序:訪問到一個節點後,即刻輸出該節點的值,並繼續遍歷其左右子樹。(根左右) 中序:訪問到一個節點後,將其暫存,遍歷完左子樹後,再輸出該節點的值,然後

原创 一些自動化測試概念

自動化測試的重要概念介紹 The Benefits of Automation and Tools Regression testing 迴歸測試 目的:check that the bugs you found in previ