悉野小楼

导航

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 27 下一页

2023年9月27日

Python学习笔记2 常用类型list tuple dict set

摘要: def double(a): """两倍 处理 三个引号可以多行注释, 3个单引号也可以用来多行注释 """ return a * 2 a = double(5) print(a) if isinstance(a, int): #检测是否是某个类型 print("a是整数") print(True 阅读全文

posted @ 2023-09-27 16:29 悉野 阅读(7) 评论(0) 推荐(0) 编辑

2023年9月25日

Python学习笔记 定义 赋值 条件 循环

摘要: Python 3.12.0 文档 a = "好的, 测试字符tester" b = 17 c = 3 print(a[1:5]) #从第1(包含)个字符取到第5(不包含)个字符 print(a[:3]) #取到第3个字符(不含3) print(a[-5:-1]) #取倒数第5个到倒数第1个 prin 阅读全文

posted @ 2023-09-25 20:08 悉野 阅读(11) 评论(0) 推荐(0) 编辑

2023年9月15日

vector迭代删除元素

摘要: vector迭代删除元素, vector使用erase删除一个元素后, 数组移动, 原来的迭代器没用了, erase会返回新的iter, 指向当前元素后面的一个元素 #include <iostream> #include <vector> using namespace std; int main 阅读全文

posted @ 2023-09-15 18:12 悉野 阅读(25) 评论(0) 推荐(0) 编辑

2023年9月8日

归并排序(mege sort)

摘要: 参考: https://www.cnblogs.com/kite97/p/13441391.html #include <iostream> #include <vector> #include <algorithm> #include <random> #include <chrono> usin 阅读全文

posted @ 2023-09-08 13:42 悉野 阅读(7) 评论(0) 推荐(0) 编辑

2023年9月4日

cmd控制台中文乱码

摘要: 切换活动页编码 cmd控制台中执行: chcp 65001 C++代码中执行 system("chcp 65001"); 注:CHCP是一个计算机指令,能够显示或设置活动代码页编号。 代码页 描述 65001 UTF-8代码页 950繁体中文 936简体中文默认的GBK 437 MS-DOS美国英语 阅读全文

posted @ 2023-09-04 14:10 悉野 阅读(18) 评论(0) 推荐(0) 编辑

2023年8月30日

二叉堆例子

摘要: 参考: https://blog.csdn.net/lyqzzy/article/details/59849252 https://baike.baidu.com/item/二叉堆 二叉堆是一种特殊的堆,二叉堆是完全二元树(二叉树)或者是近似完全二元树(二叉树)。 二叉堆有两种:最大堆和最小堆。最大 阅读全文

posted @ 2023-08-30 19:20 悉野 阅读(5) 评论(0) 推荐(0) 编辑

2023年8月27日

cocos creator使用用vscode调试

摘要: 1.vscode 安装 JavaScript Debugger (Nightly) 2.修改launch.json里面端口的值 端口号是cocos creator运行打开网页的端口号, vscode launch.json修改好后, 保存, 按F5就要吧启动调试了, 原typescript文件里面打 阅读全文

posted @ 2023-08-27 19:47 悉野 阅读(835) 评论(0) 推荐(0) 编辑

2023年8月26日

[转]C++使用虚函数的时候,子类也要使用virtual关键字吗

摘要: 原文地址:https://blog.csdn.net/gao1440156051/article/details/45670715 父类使用虚函数是为了让子类重写,那子类重写的时候也需要带virtual关键字吗?比如:class Base{virtual bool init();};class De 阅读全文

posted @ 2023-08-26 15:11 悉野 阅读(45) 评论(0) 推荐(0) 编辑

2023年8月25日

一个引用没效果错误示范

摘要: #include <iostream> #include <unordered_map> using namespace std; class TestClass { public: std::unordered_map<int, int>& GetData() { return m_data; } 阅读全文

posted @ 2023-08-25 18:59 悉野 阅读(5) 评论(0) 推荐(0) 编辑

c++ stl std::sort使用例子

摘要: 例子1: class User { public: int32_t m_fight_power; private: int32_t m_level; }; bool CenterData::compare(const User *left, const User *right) { if(left- 阅读全文

posted @ 2023-08-25 10:15 悉野 阅读(23) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 27 下一页