杂项
文章平均质量分 53
杂项
q1uTruth
喜欢一句话:
写上一篇学习心得可能就能挽救一个准备放弃的人,技术是共进的,就是说在以后的技术生涯想依靠一己之力,是很有限的。
展开
-
综合小知识 & 脚本 & 命令行
CDN加速代码 # 显示原始下载地址 print(url) # 源文件 if "https://raw.githubusercontent.com" in url: arr = url.replace("https://raw.githubusercontent.com/", "").split("/") arr[1] = arr[1] + "@" + arr[2] arr原创 2022-05-06 14:29:59 · 1443 阅读 · 1 评论 -
写给朋友看 —— 一段代码理清指针难点
#include <stdio.h> #include <stdlib.h> int main() { // 声明动态数组 int *malloc_space = (int *)malloc(sizeof(int)*3); *(malloc_space + 0) = 0; *(malloc_space + 1) = 1; *(malloc_space + 2) = 2; // 声明其它指针 int a = 123; int *a_p原创 2022-04-21 22:29:29 · 113 阅读 · 0 评论 -
NOJ 练习题5,6季
第5季 类 41题 import math class Rectangle(): def __init__(self,x1,y1,x2,y2): x1, y1, x2, y2=int(x1), int(y1), int(x2), int(y2) self.x1,self.x2 = min(x1,x2),max(x1,x2) self.y1,self.y2= min(y1,y2),max(y1,y2) def calculate_overl原创 2021-11-01 22:49:59 · 312 阅读 · 0 评论