06 2020 档案

摘要:代码: jdbc.properties driver=com.mysql.jdbc.Driver url=jdbc:mysql://localhost/library username=root password=logan123 #\u5B9A\u4E49\u521D\u59CB\u8FDE\u6 阅读全文
posted @ 2020-06-30 20:41 alittlecomputer 阅读(164) 评论(0) 推荐(0) 编辑
摘要:pom文件: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency> 阅读全文
posted @ 2020-06-29 19:45 alittlecomputer 阅读(134) 评论(0) 推荐(0) 编辑
摘要:代码: @ResponseBody @RequestMapping("/hello3/{hello}") public String hello3(@PathVariable String hello) { return hello; } 代码: package com.logan.SpringBo 阅读全文
posted @ 2020-06-29 16:43 alittlecomputer 阅读(83) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_41656025/article/details/98502786 阅读全文
posted @ 2020-06-23 13:56 alittlecomputer 阅读(96) 评论(0) 推荐(0) 编辑
摘要:今天开机后,从几分钟到半个小时之间,感觉机器反应有些慢,发现CPU占用80-90%。查看任务管理器, 有一个 software_reporter_tool.exe 的程序占用了一半的CPU使用率。 转到文件所在文件夹查看,发现是 Google Chrome 使用的一个文件。 查询该文件,发现 sof 阅读全文
posted @ 2020-06-21 15:24 alittlecomputer 阅读(273) 评论(0) 推荐(0) 编辑
摘要:代码如下: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel= 阅读全文
posted @ 2020-06-14 21:49 alittlecomputer 阅读(166) 评论(0) 推荐(0) 编辑
摘要:代码: from flask import Flask,render_template,jsonify from flask_sqlalchemy import SQLAlchemy app = Flask(__name__) app.config["SECRET_KEY"] = "hard" ap 阅读全文
posted @ 2020-06-11 11:26 alittlecomputer 阅读(101) 评论(0) 推荐(0) 编辑
摘要:链接:https://www.cnblogs.com/yy3b2007com/p/7499410.html 阅读全文
posted @ 2020-06-08 06:29 alittlecomputer 阅读(34) 评论(0) 推荐(0) 编辑
摘要:参考链接:https://blog.csdn.net/weixin_43092168/article/details/93176238 题目:给定二叉树,按垂序遍历返回其节点值。 对位于(X,Y)的每个结点而言,其左右子节点分别位于(X-1,Y-1)和(X+1,Y-1)。 把一条垂线从X=-infi 阅读全文
posted @ 2020-06-08 06:05 alittlecomputer 阅读(155) 评论(0) 推荐(0) 编辑
摘要:代码: # encoding:utf-8 from bs4 import BeautifulSoup import requests, re, os, socket from urllib import request # 指定要下载的版本 element_ui_version = "2.13.0" 阅读全文
posted @ 2020-06-03 20:37 alittlecomputer 阅读(908) 评论(0) 推荐(0) 编辑
摘要:代码: package com.niuke.p8; /** * reorder-list * @author Administrator * */ public class Solution { public void reorderList(ListNode head) { if(head == 阅读全文
posted @ 2020-06-02 06:35 alittlecomputer 阅读(64) 评论(0) 推荐(0) 编辑
摘要:一、把一个数组的值赋给二叉树 1.1二叉树的构建 1.2 具体代码 package com.algo.binarytree; import java.util.LinkedList; import java.util.List; public class BinTreeTraverse { priv 阅读全文
posted @ 2020-06-02 05:55 alittlecomputer 阅读(424) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示