摘要:
代码: 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
阅读(104)
评论(0)
推荐(0)
摘要:
链接:https://www.cnblogs.com/yy3b2007com/p/7499410.html 阅读全文
posted @ 2020-06-08 06:29
alittlecomputer
阅读(38)
评论(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
阅读(163)
评论(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
阅读(959)
评论(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
阅读(67)
评论(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
阅读(445)
评论(0)
推荐(0)