相关文章
Day 04 python学习笔记
Python数据容器
元组 元组的声明 变量名称(元素1,元素2,元素3,元素4…….) (元素类型可以不同) eg:
tuple_01 ("hello", 1, 2,-20,[11,22,33])
print(type(tuple_01))结果&#x…
编程日记
2024/12/22 23:08:38
angularjs directive(指令用法)将int转化成string
1)将int转化成string
a)angularjs select在ng-model值为int的时候无法实现双向绑定
b)通过directive(指令用法)将int转化成string就能实现双向绑定
<!DOCTYPE html>
<html ng-app"my_app">&l…
编程日记
2024/12/19 3:47:08
2023年4月到7月工作经历
2023年4
有同事说程序崩溃一起分析得结果 unsigned uNum 2; std::string str "abc" uNum; std::cout << str;
结果是c 。如果uNum 很大的话,就可能崩溃。 unsigned uNum 2; //std::string str "abc" uN…
编程日记
2024/12/17 22:22:03
vue-引入使用main.js全局常量
common.js
命名什么都可以,用来定义常量的
定义了之后使用export让此暴露出去
const QRaddress http://localhost:9875export{QRaddress,
}
main.js
//引入刚刚的js
import {QRaddress} from /config/common.js挂载
Vue.prototype.$QRaddress QRaddress使用 …
编程日记
2024/12/20 5:33:56
C/C++ DFS深度优先搜索面试算法题
1.岛屿的个数
https://blog.csdn.net/qq_36136459/article/details/104326796
给定一个由 ‘1’(陆地)和 ‘0’(水)组成的的二维网格,计算岛屿的数量。一个岛被水包围,并且它是通过水平方向或垂直方向上相…
编程日记
2024/12/20 17:07:43
【力扣】动态规划题目之“最”系列
文章目录 一、动态规划问题解决步骤二、力扣经典例题[5. 最长回文子串](https://leetcode.cn/problems/longest-palindromic-substring/)[32. 最长有效括号](https://leetcode.cn/problems/longest-valid-parentheses/description/)[53. 最大子数组和](https://leetcode.cn/pro…
编程日记
2024/12/22 20:02:49