网站首页 站内搜索

搜索结果

查询Tags标签: little,共有 14条记录
  • eel --- A little Python library for making simple Electron-like HTML/JS GUI apps

    eel https://github.com/ChrisKnott/Eel#intro electron是一种实现GUI单体应用的框架, GUI部分使用web前端技术, 后台运行在nodejs上。 虽然在同一个机器上,实际上实现了前后台分离。nodejs属于web领域发展形成的后端平台, 对于python生态积累的优势无法应用到,例如很…

    2022/7/29 14:23:45 人评论 次浏览
  • 【KMP】Seek the Name, Seek the Fame

    题目链接 --> http://poj.org/problem?id=2752 题目描述Description The little cat is so famous, that many couples tramp over hill and dale to Byteland, and asked the little cat to give names to their newly-born babies. They seek the name, and at the …

    2022/3/29 23:29:16 人评论 次浏览
  • python 大小端

    little= int.from_bytes(bytes(ab, encoding=utf8), little)big = int.from_bytes(bytes(ab, encoding=utf8), big)print(little: {:0>16b}.format(little))print(big: {:0>16b}.format(big))print(a: {:0>8b}.format(ord(a)))print(b: {:0>8b}.format(ord(b)…

    2021/11/19 22:12:55 人评论 次浏览
  • python 大小端

    little= int.from_bytes(bytes(ab, encoding=utf8), little)big = int.from_bytes(bytes(ab, encoding=utf8), big)print(little: {:0>16b}.format(little))print(big: {:0>16b}.format(big))print(a: {:0>8b}.format(ord(a)))print(b: {:0>8b}.format(ord(b)…

    2021/11/19 22:12:55 人评论 次浏览
  • Some Little Tricks in Java

    默认修饰符和protected修饰符的对比在很多网站上,对此往往语焉不详(https://www.runoob.com/java/java-modifier-types.html),好像是一致的,实际上,默认修饰的类对于同一包内的类可见,但是对类的子类不可见,而protected可见,所以,如果说最好对于类还是写上修饰符,…

    2021/9/19 11:35:36 人评论 次浏览
  • Some Little Tricks in Java

    默认修饰符和protected修饰符的对比在很多网站上,对此往往语焉不详(https://www.runoob.com/java/java-modifier-types.html),好像是一致的,实际上,默认修饰的类对于同一包内的类可见,但是对类的子类不可见,而protected可见,所以,如果说最好对于类还是写上修饰符,…

    2021/9/19 11:35:36 人评论 次浏览
  • Linux查看Qt版本号的方法

    在Linux环境下我们可以通过以下的方法来获取Qt的版本号 strings libQt5Core.so.5 | grep "5\." 通过此命令即可获qt的版本号和编译位置 Qt 5.14.2 (x86_64-little_endian-lp64 shared (dynamic) release build; by GCC 5.4.0 20160609)This is the QtCore libra…

    2021/8/29 7:08:20 人评论 次浏览
  • Linux查看Qt版本号的方法

    在Linux环境下我们可以通过以下的方法来获取Qt的版本号 strings libQt5Core.so.5 | grep "5\." 通过此命令即可获qt的版本号和编译位置 Qt 5.14.2 (x86_64-little_endian-lp64 shared (dynamic) release build; by GCC 5.4.0 20160609)This is the QtCore libra…

    2021/8/29 7:08:20 人评论 次浏览
  • 7.29 第四场 License Plate Recognition

    License Plate Recognition Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others) Total Submission(s): 332 Accepted Submission(s): 175 Problem Description Little Rabbit is a college student who is studying Communication Engi…

    2021/8/2 23:07:14 人评论 次浏览
  • 7.29 第四场 License Plate Recognition

    License Plate Recognition Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others) Total Submission(s): 332 Accepted Submission(s): 175 Problem Description Little Rabbit is a college student who is studying Communication Engi…

    2021/8/2 23:07:14 人评论 次浏览
  • A little 数据库学习笔记

    保存数据的容器: 1.数组(内存) 2.集合(内存) 3.文件(不方便管理) 相关概念DB:database,存储数据的仓库,它保存了一系列有组织的数据 DBMS:database management system数据库管理系统,数据库是通过DBMS创建和操作的容器。(常见的数据库管理系统:MySQL,Oralcle,DB2,Sq…

    2021/7/14 2:04:46 人评论 次浏览
  • A little 数据库学习笔记

    保存数据的容器: 1.数组(内存) 2.集合(内存) 3.文件(不方便管理) 相关概念DB:database,存储数据的仓库,它保存了一系列有组织的数据 DBMS:database management system数据库管理系统,数据库是通过DBMS创建和操作的容器。(常见的数据库管理系统:MySQL,Oralcle,DB2,Sq…

    2021/7/14 2:04:46 人评论 次浏览
  • 【215】第K个大的数,K相关题目

    1、从大到小第K个数 在未排序的数组中找到第 k 个最大的元素。请注意,你需要找的是数组排序后的第 k 个最大的元素,而不是第 k 个不同的元素。 示例 1: 输入: [3,2,1,5,6,4] 和 k = 2 输出: 5 示例 2: 输入: [3,2,3,1,2,4,5,5,6] 和 k = 4 输出: 4题目要求是求得从大到小…

    2021/6/22 6:28:10 人评论 次浏览
  • C++学习日常——little tips

    C++学习日常——little tips关于类的构造函数单参数的构造函数,应该加上explicit关键字,防止隐式转换。 class myString{ public:myString(size_t size){ //单参数构造函数_size = age;_ptr = (char*)malloc(size + 1);}Person(size_t size, char* ptr = (char*)malloc…

    2021/4/23 22:32:06 人评论 次浏览
扫一扫关注最新编程教程