上一页 1 2 3 4 5 6 7 ··· 18 下一页
摘要: 题目链接 很经典一道题,算法课本上遇见了就做一下 题解见注释 #include<bits/stdc++.h> using namespace std; int n,m; int f[105][15];//f[i][j]表示问题为i层楼j个鸡蛋的答案 void YYCH() { for(int i=0 阅读全文
posted @ 2023-10-26 15:20 wljss 阅读(26) 评论(0) 推荐(0)
摘要: 根据标题内容,分类有 财经、彩票、房产、股票、家居、教育、科技、社会、时尚、时政、体育、星座、游戏、娱乐 #导入必要的包 import random import jieba # 处理中文 from sklearn import model_selection from sklearn.naive_ 阅读全文
posted @ 2023-09-08 23:09 wljss 阅读(87) 评论(0) 推荐(0)
摘要: 表达式有多种表示方式 例如: Exp = a * b + (c * d / e) * f 前缀式: + * a b * * c / d e f 中缀式: a * b + c * d / e * f 后缀式: a b * c d e / * f * + 得到后缀表达式后可以用栈得到结果 如何得到后缀表 阅读全文
posted @ 2023-08-10 14:25 wljss 阅读(54) 评论(0) 推荐(0)
摘要: testbench ```v `timescale 1ns / 1ps //仿真时单位时间1ns,精度1ps module testbench; reg [3:0] inCode; reg [31:0] src1; reg [31:0] src2; wire [7:0] control; wire 阅读全文
posted @ 2023-06-20 22:29 wljss 阅读(37) 评论(0) 推荐(0)
摘要: 4个4bit先行进位加法器(CLA)组成16bitCLA adder.v ```v `timescale 1ns / 1ps module adder ( input[3:0] A, input[3:0] B, input C0,//进位输入 output[3:0]S, output C4//进位输 阅读全文
posted @ 2023-06-16 09:54 wljss 阅读(101) 评论(0) 推荐(0)
摘要: deviceInfos.jsp ```jsp jsp作业3 查询条件 站点名称(*): 设备名称(*): 返回 设备信息 站点名称设备名称设备编码设备分类设备类型安装时间设备状态操作 "); out.print(""+rs.getString("siteName")+""); out.print(" 阅读全文
posted @ 2023-06-04 18:41 wljss 阅读(12) 评论(0) 推荐(0)
摘要: 一饭多吃.jpg 放个最初版本,A*求最短路 ```cpp #include "Logger.h" #include "ColorUtils.h" #include "ImgUtils.h" #include #include #include #include #include #include 阅读全文
posted @ 2023-05-26 23:08 wljss 阅读(44) 评论(0) 推荐(0)
摘要: 没有emo,随便写一点思考到的东西,可能有些中二 下面是遇到的一些有道理的句子。 .人们总是互相羡慕,而看不到自己拥有的美好,恰恰相反,总能感受到自己施加给自己的痛苦 .“保护少数人”其实是在为所有人说话,因为每个人都有可能成为那些“少数人” .少年不识愁滋味,为赋新词强说愁。 .有人说裸体一旦成为 阅读全文
posted @ 2023-05-26 23:08 wljss 阅读(51) 评论(0) 推荐(0)
摘要: equipmentList.jsp ```jsp Web程序设计作业2 设备信息 站点名称设备名称设备编码设备分类设备类型安装时间设备状态操作 "); for(int i=0;i"); } else { out.print(str.charAt(i)); } } out.print("修改 删除") 阅读全文
posted @ 2023-05-24 08:50 wljss 阅读(22) 评论(0) 推荐(0)
摘要: 学了点前端,练个手 代码 <html> <head> <title>Web程序设计作业1</title> <meta charset="utf-8"> <script src="js/jquery-1.9.1.min.js" type="text/javascript"></script> <lin 阅读全文
posted @ 2023-05-18 15:33 wljss 阅读(45) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 18 下一页