SSK3100_Lab 6GroupLab 7/ page 1Faculty of Computer Science and Information TechnologySSK 3100 (Computer Programming I)Semester I 2020/2021Lab 6 (Week ...
分类:
其他好文 时间:
2021-01-05 11:11:22
阅读次数:
0
使用数组创建队列 1 #include <stdio.h> 2 #define MAXQUEUE 10 3 4 int queue[MAXQUEUE]; 5 int front = -1; 6 int rear = -1; 7 8 int enqueue(int value) 9 { 10 if(r ...
分类:
其他好文 时间:
2021-01-04 11:36:12
阅读次数:
0
题目描述 题目链接 一棵二叉树可以按照如下规则表示成一个由 \(0、1、2\) 组成的字符序列,我们称之为 “二叉树序列 \(S\)”: $S= \begin 0 \ \ \ \ \ \ \ \ \ \ 表示该树没有子节点 \newline 1S_1 \ \ \ \ \ \ 表示该树有一个子节点,S ...
分类:
其他好文 时间:
2021-01-02 11:15:58
阅读次数:
0
快速幂运算 HDU2035 求 http://acm.hdu.edu.cn/showproblem.php?pid=2035 题目是很简单的,因为b也不大所以时间复杂度为n的算法也能ac #include <iostream> using namespace std; int a, b; int p ...
分类:
其他好文 时间:
2021-01-01 12:58:37
阅读次数:
0
v-model 作用: 表单元素的绑定,实现了双向数据绑定,通过表单项可以更改数据。 v-model会忽略所有表单元素的value、checked、selected特性的初始值,而总是将Vue实例的数据作为数据来源,应该在data选项中声明初始值。 ² 绑定文本框 <p>{{message}}</p ...
分类:
其他好文 时间:
2021-01-01 12:44:45
阅读次数:
0
import os import time import shutil def del_file(filepath): """ 删除某一目录下的所有文件或文件夹 """ del_list = os.listdir(filepath) for f in del_list: file_path = os ...
分类:
其他好文 时间:
2020-12-31 11:42:16
阅读次数:
0
Servlet2.5方式Servlet3.0方式SpringMVC方式案例实操Servlet2.5方式文件上传涉及到前台页面的编写和后台服务器端代码的编写,前台发送文件,后台接收并保存文件,这才是一个完整的文件上传。1)前台页面在做文件上传的时候,会有一个上传文件的界面,首先我们需要一个表单,并且表单的请求方式为POST;其次我们的form表单的enctype必须设为”multipart/form
分类:
Web程序 时间:
2020-12-19 12:50:11
阅读次数:
4
没学会 先存一个留着吗慢慢看 from translations import Machineclass Matter(object): passmodel = Matter()states = ['New', 'Ready', 'Waiting', 'Running', 'Terminated'] ...
分类:
系统相关 时间:
2020-12-18 13:01:30
阅读次数:
3
class Utils: #对可输入的元素执行点击,清理和输入 @classmethod def send_input(cls,ele,value): ele.click() try: ele.clear() except: pass finally: ele.send_keys(value) # ...
分类:
其他好文 时间:
2020-12-17 13:04:31
阅读次数:
5
Smallest Subtree with all the Deepest Nodes (M) 题目 Given the root of a binary tree, the depth of each node is the shortest distance to the root. Retur ...
分类:
其他好文 时间:
2020-12-17 12:55:47
阅读次数:
3