- 博客(12)
- 收藏
- 关注
原创 pandas
1、pandas的dataframe筛选出某一列等于具体值的数据时,用.isin() Eg:weather = weather[ ( weather['code'].isin([320100,320200]) ) ] 2、将一列数据分为两列 如暴雨/大雨 -->暴雨 大雨 data.insert(1,'pm',data['weather']) data['am'] = data['w...
2018-08-09 19:29:01 182
原创 lintcode
1、利用C++特性:class Solution { public: /** * @param A an integer array * @return void */ void sortIntegers(vector<int>& A) { // Write your code here sort(A...
2018-06-01 20:45:27 1015
原创 C ++ 特性(刷题总结的)
1、class类中,public代表可以从外部访问里面的变量。例子:class A{ public: int a, b; void print(){ cout << a <<' '<<b <<endl; return; } } A test; test.A = 1; test.B = 2; te...
2018-06-01 16:26:20 1394
原创 线性结构4 Pop Sequence
#include<stdio.h> #include<iostream> #include<algorithm> #include<vector> #include<stack> using namespace std; int M, N, K; int Check(vector<int> &v) { stac...
2018-05-08 13:22:10 177
原创 线性结构3 Reversing Linked List (C++)
#include<iostream> #include<vector> using namespace std; #define MAX_ADDRESS_SIZE 100000 struct Node { int Address = -1; int Data = 0; int Next = -1; }; void reverse_linked_nodes(v...
2018-05-06 12:43:51 372
原创 线性结构2 一元多项式的乘法与加法运算
#include<stdio.h> #include<string.h> #include<stdlib.h> #include<math.h> typedef struct PloyNode *Ploynomial; struct PloyNode { int coef; int expon; Ploynomial link; }; ...
2018-05-04 22:45:48 213
原创 线性结构1 两个有序链表序列的合并
List Merge(List L1, List L2) { List L; List L3 = (PtrToNode)malloc(sizeof(struct Node)); L3->Next = NULL; List p = L1->Next; /*这里注意两个头结点的位置 L1->Next才是第一个元素结点,下同*/ List q = L2->Ne...
2018-05-03 22:15:11 178
原创 复杂度1 最大子列和问题
暴力求解(求出所有可能的和) 复杂度O(N³)#include<stdio.h> #include<math.h> #include<string.h> int a[100001]; int main() { int N; scanf("%d", &N); for(int i = 0; i < N; i++) scanf("%d...
2018-04-30 18:16:09 111
原创 MNIST学习笔记
英文教程:http://deeplearning.net/tutorial/logreg.html#logreg主要代码:n_train_batches = train_set_x.get_value(borrow=True).shape[0] // batch_size n_valid_batches = valid_set_x.get_value(borrow=True).shape[0] /...
2018-03-16 23:05:30 264
原创 Python 转义序列
\\ Backslash () 反斜杠 \' Single-quote (') 单引号 \" Double-quote (") 双引号 \a ASCII bell (BEL) 响铃符 \b ASCII backspace (BS) 退格符 \f ASCII formfeed (FF) 进纸符 \n ASCII l
2017-11-20 12:11:01 231
原创 python 格式化字符
%s 字符串 (采用str()的显示) %r 字符串 (采用repr()的显示) %c 单个字符 %b 二进制整数 %d 十进制整数 %i 十进制整数 %o 八进制整数 %x 十六进制整数 %e 指数 (基底写为e) %E 指数 (基底写为E) %f 浮点数 %F
2017-11-15 11:02:06 144
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人