网站首页 站内搜索

搜索结果

查询Tags标签: other,共有 82条记录
  • Anaconda (Python distribution)

    Anaconda (Python distribution) Anaconda is a distribution of the Python and R programming languages for scientific computing (data science, machine learning applications, large-scale data processing, predictive analytics, etc.), that aims to simplify …

    2022/9/4 1:24:08 人评论 次浏览
  • Python custom modify the __add__ method All In One

    Python custom modify the add method All In OnePython 改写 __add__ 类方法"""# class Juice: # def __init__(self, name, capacity): # self.name = name # self.capacity = capacity# def __str__(self): # return (…

    2022/8/22 1:25:21 人评论 次浏览
  • 值得收藏的python语法总结

    python2早已在 2020 年停止维护,随着Python版本的不断更新迭代,很多旧的语法在可读性与效率上都已经有更好的替代了。当然,大部分的重要特性,例如装饰器、生成器、async等,相信大家都已经了然于心,本文小编就对一些用的稍微少一些、日常看到的代码中不太常见,但是能…

    2022/6/23 1:22:08 人评论 次浏览
  • 02 | C++ 自己动手实现智能指针

    0. 前言 RAII (Resource Acquisition Is Initialization, 资源获取即初始化) 是 C++ 特有的资源管理方式,依托栈和析构函数对所有资源(包括堆)进行管理。实际上就是利用一个类来实现一个来管理资源,将资源和类对象的生命周期进行绑定,这样就可以不用再手动释放资源。…

    2022/5/27 1:21:09 人评论 次浏览
  • chest

    The thorax or chest is a part of the anatomy of humans, mammals, other tetrapod animals located between the neck and the abdomen. In insects, crustaceans, and the extinct trilobites, the thorax is one of the three main divisions of the creatures body,…

    2022/5/22 23:03:01 人评论 次浏览
  • catalog

    Catalog or catalogue may refer to:Catalogingin Science and technologyLibrary catalog, a catalog of books and other mediaUnion catalog, a combined library catalog describing the collections of a number of librariesAstronomical catalog, a catalog of ast…

    2022/4/12 23:42:30 人评论 次浏览
  • HashSet源码解读

    # HashSet使用散列表实现,其内部实现和Dictionary类似,可以看作是一个只有key没有value的Dictionary【散列映射】 # 就是通过hashCode获得散列桶(buckets)的索引 # 使用了除留余数法(实现起来简单),以及散列桶数组的长度使用了素数的大小(素数使得索引分布更均匀)var h…

    2022/3/31 1:49:24 人评论 次浏览
  • 手动实现String类

    /********* author:upupupCoder* time:2022/3/30* Website:https://home.cnblogs.com/u/EmbeddedChicken* ******/ #include<iostream> #include<string.h> using namespace std; class MyString {friend ostream& operator<<(ostream&out,cons…

    2022/3/30 23:24:39 人评论 次浏览
  • 30天英语口语背诵材料:PASSAGE 9 Globalization

    In the years after World War Il, the world greatly changed. Much of this was due to new technology. For instance, the jet was developed. This increased the speed that people could travel. There were also advances in telecommunications. Computers and t…

    2022/3/3 23:18:40 人评论 次浏览
  • bracket

    A bracket is either of two tall fore- or back-facing punctuation marks commonly used to isolate a segment of text or data from its surroundings. Typically deployed in symmetric pairs, an individual bracket may be identified as a left or right bracket …

    2022/2/19 23:12:57 人评论 次浏览
  • 学python-入门介绍

    介绍*Python is a programming language that lets you work quickly and integrate systems more effectivelyPython是可以让你工作得更快并且更高效地集成系统的程序语言。 后面补充具体特性实例。 语言特性 1. Functions Defined 函数定义The core of extensible progr…

    2022/2/10 14:12:34 人评论 次浏览
  • Linux权限

    文章目录 Linux中的用户切换用户sudo权限权限修改chmodchownchgrp粘置位umaskLinux中的用户 Linux中,默认又两类用户 1.root:超级管理员,具有非常高的权限 2.普通用户:具有一般权限,需要受权限约束的,只有root可以创建普通用户 切换用户 使用su - 我们对于root和普通…

    2022/2/4 7:12:41 人评论 次浏览
  • 数据结构与算法【Python实现】(十)欧几里得算法

    约数:如果整数a能被整数b整除,那么a叫做b的倍数,b叫做a的约数 给定两个整数a,b,两个数所有公约数中的最大值即为最大公约数 如何计算两个数的最大公约数: 欧几里得——辗转相除法#递归算法 def gcd(a, b):if b == 0:return aelse:return gcd(b, a % b)#非递归算法 d…

    2022/1/27 1:04:37 人评论 次浏览
  • idea设置默认maven配置

    第一步 File ----> Other Settings ---> Setting for New Projects...第二步 找到maven第三步 选择自己的路径,点击ok,搞定

    2022/1/25 23:04:59 人评论 次浏览
  • C++ 11特性深入学习

    若一个类重载 = 符号 class_name& operator=(const class_name& other) 通过函数返回一个临时的class来定义一个 已声明的 变量时 class_name c = class_name(arg); 会进行较多的工作:先用arg的对应构造函数生成一个临时var, 然后=重载函数将var作为参数才能…

    2022/1/17 12:33:56 人评论 次浏览
共82记录«上一页1234...6下一页»
扫一扫关注最新编程教程