上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: 回溯法贪心法求旅行商问题 阅读全文
posted @ 2021-04-25 19:20 会武术之白猫 阅读(562) 评论(0) 推荐(1) 编辑
摘要: import cv2 from PIL import Image,ImageFont,ImageDraw import os from cv2 import VideoWriter, VideoWriter_fourcc, imread, resize # #coding:UTF-8 # 视频转字符 阅读全文
posted @ 2021-02-14 22:14 会武术之白猫 阅读(497) 评论(0) 推荐(0) 编辑
摘要: 老规矩,先上代码 # -*- coding: utf-8 -*import pandas as pdimport matplotlib.pyplot as pltimport requestsimport sys import time from bs4 import BeautifulSoup i 阅读全文
posted @ 2021-02-02 19:25 会武术之白猫 阅读(578) 评论(0) 推荐(0) 编辑
摘要: import xlrd import random import pandas as pd import matplotlib.pyplot as plt import matplotlib.animation as animation def random_color():#返回随机颜色 colo 阅读全文
posted @ 2021-01-30 22:21 会武术之白猫 阅读(772) 评论(2) 推荐(0) 编辑
摘要: num=[1,3,6,7,9,10,14,15] s="abcabcbb" def two_part(num,target): left=0 right=len(num)-1 while(left<=right): mid=(left+right)//2 if num[mid]<target:lef 阅读全文
posted @ 2020-12-22 16:59 会武术之白猫 阅读(273) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python3 # -*- coding: utf-8 -*- import random from tkinter import * from tkinter import messagebox from PIL import Image cheng=["刘备","关羽"," 阅读全文
posted @ 2020-12-18 18:41 会武术之白猫 阅读(3119) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python3 # -*- coding: utf-8 -*- import random,os from tkinter import * from tkinter import messagebox def on_click(): global var var=String 阅读全文
posted @ 2020-12-18 16:11 会武术之白猫 阅读(527) 评论(0) 推荐(0) 编辑
摘要: import requests import linecache import wordcloud import jieba import matplotlib.pyplot as plt from bs4 import BeautifulSoup if __name__=="__main__": 阅读全文
posted @ 2020-12-18 15:31 会武术之白猫 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 破圈法求最小生成树+最小生成树与最短路径问题 阅读全文
posted @ 2020-07-26 23:37 会武术之白猫 阅读(4058) 评论(0) 推荐(0) 编辑
摘要: 一道题理解穷举/贪心/爬山/遗传/退火/蚁群算法,配代码 阅读全文
posted @ 2020-06-28 15:48 会武术之白猫 阅读(1386) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页