- 博客(36)
- 资源 (3)
- 问答 (2)
- 收藏
- 关注
原创 求助 [Java SSH 配置问题]
求助 [Java SSH 配置问题]哪位大佬告诉小弟一声:为什么sessionFactory 总是Autoweired 失败?以下是报错——[ERROR] 2022-05-13 22:09:26,190 org.apache.struts2.dispatcher.DefaultDispatcherErrorHandler - Exception occurred during processing request: Cannot invoke "org.hibernate.SessionFactory
2022-05-13 22:23:08
369
1
原创 【蓝桥】 回文日期
记录一下被蓝桥折磨的时光之[回文日期]import java.util.*; public class _回文日期 {// public static public static void main(String[] args) { Scanner sc = new Scanner(System.in); String s = sc.next(); int year = Integer.valueOf(s.substring(0, 4)); int month = Integer
2022-04-06 14:59:25
279
原创 【蓝桥】算法 《拿金币》
【蓝桥】算法 《拿金币》下面是我本人写的回溯算法,但是只有一个测试用例能通过,其他9个均超时,拜托各位大佬指点关于回溯中剪枝的操作,来降低递归深度并通过蓝桥OJ,同时也欢迎一起探讨!😃 😃 😃import java.util.*;public class _拿金币 { public static int sum = 0; public static void main(String[] args){ Scanner sc = new Scanner(System.in); int n =
2022-04-03 21:53:56
722
2
原创 力扣算法题之[202. 快乐数]
力扣算法题之[202. 快乐数]文章涉及本人版权问题,随意引用等侵权问题必究!题目如下:BF Solution :class Solution { public boolean isHappy(int n) { // if(n == 1)return true; String s = String.valueOf(n); int temp = 0, count = 0; while(temp != 1) {
2022-01-21 10:18:04
4166
原创 蓝桥杯算法题之 《回文日期》
蓝桥杯算法题之 《回文日期》(涉及文章内容侵权问题本人必究!请勿随意使用!)1. 题目折腾了一下午才Pass…我还是太菜了!真不敢相信这是简单题 ????2. 代码如下:欢迎大佬一起探讨并指正 ????package bluebridgecup;import java.util.*;//题目描述//2020 年春节期间,有一个特殊的日期引起了大家的注意:2020 年 2 月 2 日。因为如果将这个日期按 “yyyymmdd” 的格式写成一个 8 位数是 20200202,恰好是一个回
2022-01-19 19:52:50
553
2
原创 力扣算法题之《74. 搜索二维矩阵》
[力扣算法题]《74. 搜索二维矩阵》class Solution {public: bool searchMatrix(vector<vector<int>>& matrix, int target) { // 一次通过,哈哈 // c++ god forever int l1 = (int)matrix.size(); int l2 = (int)matrix[0].size(); if(targ
2022-01-01 22:00:20
294
原创 力扣算法之《797. 所有可能的路径》
[力扣算法]《797. 所有可能的路径》class Solution { // follow the solution from the official website of leetcode List<List<Integer>> ans = new ArrayList<List<Integer>>(); Deque<Integer> stack = new ArrayDeque<Integer>();
2021-12-23 21:09:38
454
原创 力扣算法之《130. 被围绕的区域》
[力扣算法题]《130. 被围绕的区域》class Solution { // Reappearance follow the leetcode official website solution of this question public void solve(char[][] board) { if(board == null || board.length == 0)return; int n = board.length; int
2021-12-23 19:14:14
291
原创 力扣算法之《547. 省份数量》
[力扣算法题]《547. 省份数量》class Solution { public static int findCircleNum(int[][] isConnected) { if(isConnected == null)return 0; int ans = 0; int len = isConnected.length; boolean []visited = new boolean[len]; // bool
2021-12-22 01:14:42
351
原创 力扣算法之《200. 岛屿数量》
[力扣算法]《200. 岛屿数量》class Solution { // the second type: failed(two error——for the lack of the consideration of the outcome of the recusion and full critical condition('缺乏递归出口和完整的临界条件的考虑'))// public static int numIslands(char[][] grid) {//
2021-12-22 00:25:34
231
原创 力扣算法题之《117. 填充每个节点的下一个右侧节点指针 II》
[力扣算法题]《117. 填充每个节点的下一个右侧节点指针 II》class Solution { public static Node connect(Node root) { // the second type: failed(It turns a little bit easy for me, but I still failed because I dont't quite understand with the usage of Queue(a Java abstrac
2021-12-21 23:41:57
188
原创 力扣算法题之《572. 另一棵树的子树》
[力扣算法题]572. 另一棵树的子树(对照官方题解复现,加入了一点自己的理解,欢迎一起讨论!????)/** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode() {} * TreeNode(int val) { this.val = val; } *
2021-12-20 22:44:51
406
1
原创 209. 长度最小的子数组
力扣算法题之《209. 长度最小的子数组》class Solution { public int minSubArrayLen(int target, int[] nums) { // 排除空数组影响 if(nums.length==0)return 0; // 排除小数组影响,即数组总和小于目标值 if(Arrays.stream(nums).sum() < target)return 0;
2021-12-19 15:55:31
119
原创 力扣算法之《438. 找到字符串中所有字母异位词》
力扣算法之《438. 找到字符串中所有字母异位词》(附:第一次遇上滑块问题,参照官网解决方法手打代码 ????)class Solution { public List<Integer> findAnagrams(String s, String p) { // type the following code follow the solution of official website of Likou if(s.length() < p.le
2021-12-19 09:05:53
256
原创 力扣算法之《11. 盛最多水的容器》
力扣算法之《11. 盛最多水的容器》class Solution { // <11. 盛最多水的容器> public int maxArea(int[] height) { // 这个真的是秒杀!哈哈 //(上一题<986.区间列表的交集>官网题解的inspiration) // 使用双指针解决 if(height.length==0)return 0;
2021-12-19 00:48:55
213
原创 力扣算法之 986. 区间列表的交集
[力扣算法题] 986. 区间列表的交集class Solution { public static int[][] intervalIntersection(int[][] firstList, int[][] secondList) { List<List<Integer>> li = new ArrayList<List<Integer>>(); List<Integer> list;
2021-12-18 08:25:59
233
原创 162. 寻找峰值
162. 寻找峰值class Solution { public int findPeakElement(int[] nums) { // // BP method // int len=nums.length; // if(len==0)return 0; // if(len==1)return 0; // if(len==2)return (nums[1]>nums[0])?1:0; // i
2021-12-12 22:09:43
163
原创 74. 搜索二维矩阵
74. 搜索二维矩阵(力扣算法题)class Solution { public static boolean searchMatrix(int[][] matrix, int target) { // // method 1(BP) // int m= matrix.length; // int n= matrix[0].length; // if(target<matrix[0][0] || target>matrix
2021-12-12 19:51:04
171
原创 <力扣算法题>面试题 01.05. 一次编辑(从BP到Optimization)
<力扣算法题>面试题 01.05. 一次编辑(从BP到Optimization)法一(BP)肝了近1小时,才成功把该BP方法的逻辑整明白,不能不说力扣官方测试用例设计的滴水不漏,代码如下,欢迎一起讨论 ????提交的代码: 9 小时前语言: javaclass Solution { public boolean oneEditAway(String s1, String s2) { boolean flag = true; i
2021-12-11 11:24:10
360
原创 MNE example《Motor imagery decoding from EEG data using the Common Spatial Pattern (CSP)》
MNE example《Motor imagery decoding from EEG data using the Common Spatial Pattern (CSP)》(个人理解,example地址)根据源地址所示代码,本人的一些理解和疑惑,欢迎一起讨论,同时希望大佬指点迷津 ????Anaconda上代码——import numpy as npimport matplotlib.pyplot as pltfrom sklearn.pipeline import Pipelinefro
2021-11-24 22:45:06
544
原创 [MNE example]Working with Epoch metadata
[MNE example]Working with Epoch metadata《文章链接》import osimport numpy as npimport pandas as pdimport mne# 与anaconda jupyter notebook不同,必须import matplotlib.pyplot packageimport matplotlib.pyplot as plt# 若本地没有该数据集,会自动从‘https://osf.io/qkvf9/download?ver
2021-11-23 13:57:41
1015
原创 MNE-python《handling bad channels》
MNE-python官网文章《handling bad channels》(以下简称《文章》,来源——https://mne.tools/stable/auto_tutorials/preprocessing/15_handling_bad_channels.html?highlight=bad)阅读及个人实操根据《文章》内代码,并根据个人理解,编写如下代码:# handling bad channelsimport osfrom copy import deepcopyimport numpy
2021-11-22 22:26:46
708
原创 MNE官网解读《Annotating continuous data》
MNE官网解读文章《Annotating continuous data》(https://mne.tools/stable/auto_tutorials/raw/30_annotate_raw.html?highlight=annotation,以下简称《文章》)说明:本博客作为个人学习mne和发现和处理问题的记录按照《文章》指导,本人编写代码如下——import osfrom datetime import timedeltaimport mnesample_data_folder = m
2021-11-21 20:16:46
6234
原创 参考脑机接口社区文章《脑电分析系列[MNE-Python-11]| 信号空间投影SSP 应用》学习记录
参考脑机接口社区公众号文章《脑电分析系列[MNE-Python-11]| 信号空间投影SSP 应用》(以下简称《文章》)学习记录首先感谢脑机接口社区公众号分享的《文章》,该博客仅作为本人在实际学习和理解该文章知识的记录和期间的疑惑、调试过程的记录。《文章》使用的源码如下:# 脑电分析系列[MNE-Python-11]| 信号空间投影SSP 应用# introduction"""信号空间投影(SSP)在前面一篇分享(脑电分析系列[MNE-Python-10]|信号空间投影SSP数学原理)中提到
2021-11-20 17:19:31
1130
原创 脑机接口社区公众号文章《脑电分析系列[MNE-Python-9]| 参考电极应用》pycharm+python3.8.0学习记录
脑机接口社区文章《脑电分析系列[MNE-Python-9]| 参考电极应用》pycharm+python3.8.0学习记录及问题分析出自“脑机接口社区”文章——《脑电分析系列[MNE-Python-9]| 参考电极应用》,感谢公众号文章分享!Env: Pycharm+python3.8.0文章源码:# 脑电分析系列[MNE-Python-9]| 参考电极应用"""参考电极MNE-Python中的平均参考设置set_eeg_reference(self,
2021-11-18 15:56:22
763
原创 感谢微信公众号 脑机接口社区文章《脑电分析系列[MNE-Python-5]| Python机器学习算法随机森林判断睡眠类型》之pycharm和anaconda对比,并记录其中遇到的问题
感谢微信公众号 脑机接口社区文章《脑电分析系列[MNE-Python-5]| Python机器学习算法随机森林判断睡眠类型》之pycharm和anaconda对比,并记录其中遇到的问题,欢迎各位大佬一起探讨研究!Env——Anaconda3:内置python3.8.12Pycharm 使用本地python3.8.01. Pycharm源码使用《脑机接口社区文章《脑电分析系列[MNE-Python-5]| Python机器学习算法随机森林判断睡眠类型》源码,如下——"""脑电分析系列[MNE-P
2021-11-16 10:12:40
1824
原创 MNE SSP learning recording——Example: Environmental noise reduction from empty-room recordings
MNE SSP learning recording——Example: Environmental noise reduction from empty-room recordings(https://mne.tools/stable/auto_tutorials/preprocessing/50_artifact_correction_ssp.html#tut-artifact-ssp)记录以下在这次学习中出现的问题(未解决),欢迎指出问题!1. pycharm上编写如下代码:import os
2021-11-15 17:17:16
1703
1
原创 ButterWorth滤波器学习(参照博主链接——https://blog.youkuaiyun.com/cjsh_123456/article/details/79342300)
ButterWorth滤波器学习(参照博主链接——https://blog.youkuaiyun.com/cjsh_123456/article/details/79342300,非常感谢!),仅作个人学习记录因为实验需要,需要了解该滤波器相关内容,参照该博主实验了他的以下代码——函数代码:function [image_out] = Bfilter(image_in, D0, N)% Butterworth滤波器,在频率域进行滤波% 输入为需要进行滤波的灰度图像,Butterworth滤波器的截止频率D0,
2021-11-12 16:20:00
308
原创 力扣算法题2. 两数相加
2. 两数相加第一次尝试后做不出来,看了一遍官方的解题思路后,开始修改自己的代码,最终通过,仅作学习记录,最后看了官方的代码,恍然大悟,自己写的确实不够标准和泛化,存在太多if语句,冗余严重,欢迎各位大佬指点!下面附上自己写的代码和伪代码作为学习记录——解题思路1.1 实例化两个指针l3,l4,l3:表头,l4:工作指针1.2 初始化进位值w=0,i=0(i=1时表征第一次对l1和l2的表头元素做相加);1.3 判断l1与l2指针的null情况1.3.0 i++1.3.1 l1!=null
2021-11-11 12:19:05
705
6
原创 力扣算法题26. 删除有序数组中的重复项(参照官方解题思路缩写)
26. 删除有序数组中的重复项(参照官方解题思路缩写)解题思路(仅作个人学习记录,欢迎大佬指正!)看了官方题解中的解题思路之后写的>>>1.1 nums.size=0>>>return 0;1.2 nums.size>0>>>1.2.1 int slow=1 *slow为慢指针,表示需要确认nums在当前index位置之前是否存在重复的元素值1.2.2 从index=1开始遍历nums1.2.2.1 如果当前index的nums元素值
2021-11-11 09:49:17
67
原创 SpringBoot启动报错:HikariPool-1 - Exception during pool initialization.解决办法
SpringBoot启动报错:HikariPool-1 - Exception during pool initialization.这里写自定义目录标题记一次Maven项目部署http访问mysql数据库过程中的问题首先确认你的Mysql数据库版本:有红色报错关于网络不可达,有报错出现乱码的,有报错没法找到匹配自身系统的库,等等...
2021-02-10 16:20:24
163
1
JetsonNano深度学习实现图片分类(第一作者邮箱2905687693@qq.com).docx
2021-05-19
[Java SSH 配置问题]
2022-05-13
nano上加载windows训练好的模型?
2021-05-08
TA创建的收藏夹 TA关注的收藏夹
TA关注的人