自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (4)
  • 收藏
  • 关注

原创 leetcode3无重复字符的最长子串(C语言版)

用滑动窗口问题进行解题int lengthOfLongestSubstring(char * s){ int size = 0; int num= 0; int i = 0,j = 0,k = 0; size = strlen(s); for(j = 0;j < size; j++){ for(k = i;k < j; k++){...

2020-01-23 00:30:20 1178 1

原创 leetcode2两数相加(C语言版)

一开始考虑的较少,最高位进位,两个链表长度不一样都没有考虑,对链表的知识也遗忘了很多struct ListNode* addTwoNumbers(struct ListNode* l1, struct ListNode* l2){ int num,flag = 0; struct ListNode* pre = (struct ListNode*)malloc(sizeof(st...

2020-01-10 14:34:20 365

原创 leetcode1两数之和(C语言版)

太长时间没有回顾c语言,内存分配忘的一干二净,所以一开始怎么也过不了编译#include <stdio.h> int* twoSum(int* nums, int numsSize, int target, int* returnSize) { int * arrayReturn = (int *)malloc(sizeof(int)*2); for(int i = 0; i &lt...

2020-01-09 14:01:55 654 3

LSTM预测实验中用到的航班数据集

数据集有三列:年、月和乘客。“passengers”列包含指定月份中旅行的乘客总数,可以看到数据集中有144行3列,这意味着数据集中包含了乘客12年的出行记录。这项任务是根据前132个月的数据,预测过去12个月出行的乘客数量。请记住,我们有144个月的记录,这意味着前132个月的数据将用于训练我们的LSTM模型,而模型性能将使用最后12个月的值进行评估。

2020-12-17

机器学习常用的简单数据集

Data repository for [seaborn](http://seaborn.pydata.org/) examples. **This is not a general-purpose data archive.** This repository exists only to provide a convenient target for the `seaborn.load_dataset` function to download sample datasets from. Its existence makes it easy to document seaborn

2020-12-03

nasa电池数据b5,b6,b7,b18 csv版

nasa电池实验数据集.csv 格式 ,用于锂电池寿命预测 Description: Experiments on Li-Ion batteries. Charging and discharging at different temperatures. Records the impedance as the damage criterion. The data set was provided by the Prognostics CoE at NASA Ames.

2020-12-03

nasa电池实验数据集

nasa电池实验数据集.mat 格式Description: Experiments on Li-Ion batteries. Charging and discharging at different temperatures. Records the impedance as the damage criterion. The data set was provided by the Prognostics CoE at NASA Ames.

2020-12-03

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除