月归档:2020年03月

插入排序

#include <stdio.h> int main(){ int … 继续阅读

发表在 C | 留下评论

选择排序

#include <stdio.h> int main(){ int … 继续阅读

发表在 C | 留下评论

冒泡排序

#include <stdio.h> int main(){ int … 继续阅读

发表在 C | 留下评论

makefile练习

#Makefile example OBJ=main.o test1.o tes … 继续阅读

发表在 C | 留下评论

理解gcc编译

#正常使用的一步编译 gcc hellogcc.c -o hgcc gcc -I … 继续阅读

发表在 C | 留下评论

爬虫练习

from bs4 import BeautifulSoup import req … 继续阅读

发表在 Python | 留下评论