云胡同学
云胡同学
全部文章
未归档
C++(8)
java(2)
leetcode(34)
python(11)
Web前端(11)
剑指offer(1)
基础小项目(1)
小程序(1)
我的安卓之路(11)
数据库(1)
数据结构(11)
算法(30)
软件配置(2)
题解(1)
归档
标签
去牛客网
登录
/
注册
云胡同学的博客
全部文章
/ 未归档
(共37篇)
药不能停
#include<iostream> #include<queue> using namespace std; struct T { friend bool operator<(T a, T b) { return a.x > b....
2016-05-29
0
393
杭电1003
#include<iostream> using namespace std; int main() { int t, n, z, i, x, begin, last, temp, _case = 1; cin>>t; while(t--) {...
2016-05-29
0
403
连续最大子序列和
#include <iostream> using namespace std; int subsequence( int A[], int N); int main() { int a[100], n; cin>>n; for(int i = ...
2016-05-27
0
364
c++ 优先队列
#include<iostream> #include<queue> using namespace std; struct T { friend bool operator < (T a1, T a2) { return a...
2016-05-27
0
355
连续子序列之和
1049 最大子段和 基准时间限制: 1 秒 空间限制: 131072 KB 分值: 0 难度:基础题 收藏 ...
2016-05-23
0
401
链表
#include <stdio.h> struct node { int data; struct node *next; }; int main() { struct node *p, *q, *head, *t;//p是临时指针 表示当前节点 int ...
2016-04-18
0
408
筛法求素数
一般: #include<stdio.h> int main() { int a[100], i, j; for(i = 2; i < 100; i++) a[i] = 1;//令2-99都为1 for(i = 2; i < 100/...
2016-04-13
0
443
首页
上一页
1
2
3
4
下一页
末页