ICode9

精准搜索请尝试: 精确搜索
  • difflib模块详解2021-12-20 13:01:48

      1、两个字符串对比 import difflib text1=""" test1 #定义字符串 hellow my name is machanwei! difflib document v7.4 add str """ text1_lines=text1.splitlines() #以行进行分隔,以便进行对比 text2="""text2: #定义字符串2 hellow my name is macha

  • Spark—RDD算子使用IDEA-Scala操作练习:请根据磁盘文件“数据集”data01.txt,该数据集包含了某大学计算机系的成绩,计算下列问题。2021-12-19 10:30:14

    一、数据源文件下载 https://download.csdn.net/download/weixin_45947938/66589736 二、问题描述 请根据给定的实验数据,在idea中通过Scala编程来计算以下内容: (1)该系总共有多少学生; (2)该系共开设来多少门课程; (3)Tom同学的总成绩平均分是多少; (4)求每名同学的选修的课程门

  • Delphi RTCHttpClient + RtcDataRequest 访问网站2021-12-16 18:01:54

    //一般可以在一开始就先连接网站。设置自动连接即可 with RtcHttpClient do begin AutoConnect := True; ServerAddr := 'xxxx.com'; ServerPort := '80'; if not RtcHttpClient.isConnected then Connect(); end; //在 RtcDataRequest 的 DataRequestBeginRequest

  • 028-Python入门(练习题)2021-12-14 21:03:13

    """ 问题1:编写一个程序,接受一行序列作为输入,并在将句子中的所有字符大写后打印行。 假设向程序提供以下输入: Hello jch Practice makes perfect 则输出为: HELLO JCH PRACTICE MAKES PERFECT """ lines = [] print('请输入您想要转换的字符串:') while True: s = input()

  • python入门及进阶学习记 lesson12021-12-10 10:03:57

    python入门及进阶学习记 lesson1 python入门及进阶学习记 lesson1 官网 https://www.python.org/ 下载: cmd中查看版本及使用 Python 教程 Python是一种易于学习又功能强大的编程语言,它提供了高效的高级数据结构,还有简单有效的面向对象编程. Python优雅的语法和动态类型,

  • 用python抓取网页中所有pdf文件的笨方法2021-12-01 13:01:51

    进入下载中心: https://www.sensirion.com/en/download-center/ 在网页任意地方点击右键,后选择inspection 右边选择elements 一直向下翻找到 “catgroup downloads" 或者合并第3-4步,直接在本页第一个下载链接点击右键,选择inspection 这样可以直接在链接上面看到catgro

  • Android开发之——统计代码行数2021-11-30 16:33:55

    一 概述 本文介紹安卓项目統計代码行数的方法: statistic插件统计代码行数git项目下统计代码行数 二 statistic插件统计代码行数 2.1 statistic插件安裝 依次点击:File——>Settings——>Plugins——>搜索statistic 2.2 statistic使用 点击底部的statistic按钮,打开statistic窗

  • 霍夫变换直线检测的基本原理:2021-11-21 22:03:32

    一步一步来: 1、在白纸上画出一个直角坐标系,任意给出一个点; 2、那么,对于点(x0,y0),经过这个点的直线必定满足y0=k*x0+b, 其中k是直线的斜率,b是直线的截距; 3、上式可以化成b=y0-k*x0,  可以看作是以-x0为斜率,以y0为截距,在k-b空间上的一个直线方程(k,b为变量); 4、可见,k-b空间上的一条直

  • 实验5 MapReduce初级编程实践(Python实现)2021-11-14 17:05:02

    一、实验目的 通过实验掌握基本的 MapReduce 编程方法;掌握用 MapReduce 解决一些常见数据处理问题的方法,包括数据合并、数据去重、数据排序和数据挖掘等。 二、实验平台 操作系统:Ubuntu 18.04(或 Ubuntu 16.04)Hadoop 版本:3.2.2 三、实验内容和要求 1. 编程实现文件合并和去

  • [Kubic] Lines2021-11-13 23:03:13

    题目大意 给定 \(n\) 条解析式为 \(ax+by+c=0\) 的直线,选出最少的直线去覆盖所有交点。 解题思路 显然,没有删掉的直线一定是互相平行的,否则一定有至少一个交点没有被删掉。 所以其实就是要选出最多的直线使它们两两平行。 对于每一条直线暴力找出有多少条直线与它平行,取最大值即可

  • osg绘图的形式2021-11-12 18:02:46

      osg绘图的形式   enum Mode { POINTS = GL_POINTS, //点 LINES = GL_LINES, //线 LINE_STRIP = GL_LINE_STRIP, LINE_LOOP = GL_LINE_LOOP, //封闭轮廓 TRIANGLES = GL_TRIANGLES, //三角形 TRIANGLE_STRIP = GL_TRIANGLE_STRIP, //三角

  • 实验3 类和对象Ⅱ2021-11-10 20:33:23

    vector_int.hpp #ifndef vector_int_hpp #define vector_int_hpp #include <cstdio> #include <iostream> using namespace std; class Vector_int { private: int size; int *p; public: int& at(int x){ return p[x]; } V

  • python获取大文件行数2021-11-10 18:02:39

    python获取大文件行数 背景:处理一些日志或者请求数据时,几百万行的数据,有时候在做性能测试任务时估算出大概需要的词表数,需要一定行数的数据,需要提前看下原始文件大小,在这记一下,的确比较快 代码如下: # 获取文件行数,一块一块读取 def get_file_lines(filePath): with open(file

  • 实验三 类与对象22021-11-09 23:01:47

    vector_int.hpp: #ifndef VECTOR_INT_H #define VECTOR_INT_H #include<iostream> #include<cassert> using namespace std; class vector_int { public: vector_int(int n) :size{ n } { cout << "Default constructor called."

  • 实验三:类与对象Ⅱ2021-11-08 21:33:13

      任务四: vector.hpp: #include<iostream> using namespace std; class Vector_int { private:int n, ori; int* p; public: Vector_int(int x, int y=0) :n(x), ori(y) { p = new int[x]; int i; for (i = 0; i < n; i+

  • VTK学习笔记(五)vtkRotationalExtrusionFilter2021-11-08 11:33:16

    1. 头文件中的翻译 扫描多边形数据创建“裙子”从自由边和线,线从顶点。          vtkRotationalExtrusionFilter是一个建模过滤器。它以多边形数据作为输入,并在输出时生成多边形数据。输入数据集围绕z轴旋转以创建新的多边形原语。这些原语形成一个“裙子”或扫面。例如,扫

  • 实验3 类与对象II2021-11-07 19:33:44

    #ifndef VECTOR_INT #define VECTOR_INT #include<iostream> #include<cassert> using namespace std; class Vector_int { public: Vector_int(int n); Vector_int(int n, int m); Vector_int(const Vector_int& x); ~Vector_int(); int

  • 实验三 类和对象Ⅱ2021-11-07 12:04:01

    四、实验结论 1.实验任务1-3 验证性实验。 2.实验任务4 vector_int.hpp #include<iostream> using namespace std; class Vector_int{ public: Vector_int(int n); Vector_int(int n,int value); Vector_int(const Vector_int &y); ~Vector_int(); in

  • 实验三 类与对象II2021-11-07 12:00:20

    实验任务四//vector_int.hpp#ifndef VECTOR_INT #define VECTOR_INT #include<iostream> #include<cassert> using namespace std; class Vector_int { public: Vector_int(int n); Vector_int(int m, int n); Vector_int(const Vector_int& x); ~

  • 面向对象->实验报告三(C++)2021-11-07 03:01:36

    欢迎访问我的个人博客: xzajyjs.cn task4 实验要求 main.cpp #include <iostream> #include "vector_int.hpp" int main(){ using namespace std; int x_len, y_len; cout << "请输入x的长度:"; cin >> x_len; Vector_int x(x_len

  • 实验三: 类和对象Ⅱ2021-11-06 18:00:39

    <vector_int.hpp> #ifndef VEXTOR_INT_HPP #define VEXTOR_INT_HPP #include<iostream> using namespace std; class Vector_int{ public: Vector_int(int n) :size(n) { p = new int[size]; cout << "创建成功,v"<<+

  • 实验三 类与对象II2021-11-06 10:33:49

    task4: 模拟实验任务2,不使用标准库模板类vector,自己动手设计并实现一个动态的整型数组类Vector_int vector_int.hpp 1 #ifndef VECTOR_INT_HPP 2 #define VECTOR_INT_HPP 3 #include<iostream> 4 #include<cassert> 5 using namespace std; 6 class Vector_int 7 { 8 pri

  • 实验3 类和对象II2021-11-05 20:31:30

    实验任务4 vector_int.hpp 1 #ifndef VECTOR_INT_HPP 2 #define VECTOR_INT_HPP 3 #include <iostream> 4 #include <cassert> 5 using namespace std; 6 class Vector_int 7 { 8 public: 9 Vector_int(int n); 10 Vector_int(int n,

  • 实验三 类和对象Ⅱ2021-11-05 18:33:15

    //Vector_int.hpp #ifndef VECTOR_INT_H #define VECTOR_INT_H #include<iostream> #include<cassert> using std::cout; using std::endl; class Vector_int { private: int size; int* p; public: Vector_int(int n); Vector_int(int n, int v

  • 实验三 类与对象Ⅱ2021-11-05 09:31:16

    实验任务4: vector_int.hpp 1 #ifndef VECTOR_INT_HPP 2 #define VECTOR_INT_HPP 3 4 #include<iostream> 5 #include<cassert> 6 7 class Vector_int{ 8 public: 9 Vector_int(int n,int inital_val=0); 10 Vector_int(const Vector

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有