我知我心
我知我心
全部文章
分类
acm(8)
c++(10)
c语言(29)
django(14)
html,css(9)
javascript(3)
linux(3)
python(30)
剑指offer(6)
动态规划(6)
工具(3)
数据库(2)
数据结构(12)
贪心算法(8)
归档
标签
去牛客网
登录
/
注册
我知我心的博客
全部文章
(共143篇)
过河问题
#include<stdio.h> #include<stdlib.h> int sort(const void *a, const void *b) { return *(int *)a - *(int *)b; } int min(int a, int b) { ...
2020-08-21
0
439
会场安排问题
#include<stdio.h> struct Node { int start; int end; }a[10000]; void quick_sort(struct Node *arr, int l, int r) //对结束时间进行排序 { if (l ...
2020-08-21
0
428
喷水装置(二)
#include<stdio.h> #include<math.h> struct Node { double start; // 横坐标 double end; //半径 }a[10000]; void quick_sor...
2020-08-21
0
350
喷水装置(一)
#include<stdio.h> #include<math.h> void quick_sort(double s[], int l, int r) { if (l < r) { double x = s[l]; in...
2020-08-21
0
410
聪明的KK
#include<stdio.h> int dp[25][25]; int maxx(int a,int b) { if(a>b) return a; else return b; } int main() { int n,m...
2020-08-21
0
426
非洲小孩
#include<stdio.h> struct Node // 定义结构体,方便处理数据 { int start; //定义开始时间 int end; //定义结束时间 }a[200]; void quick_sort(struct Node *arr, i...
2020-08-21
0
465
独木舟上的旅行
#include<stdio.h> int sum; void f(int *a, int w, int n) { int i = 0, j = 1, temp = 0, t, temp1, s; for (i = 0; i < n; i++) { ...
2020-08-21
0
400
+-字符串
#include<stdio.h> #include<string.h> int main() { char a[5000], b[5000], temp; int len, i, t; while (scanf("%s%s", a...
2020-08-21
0
412
队花的烦恼一
#include<stdio.h> int main() { int a,i; while (scanf("%d",&a) != EOF) { int b[100]={0}; if (a == 0) ...
2020-08-21
0
362
国王的魔镜
#include<stdio.h> #include<string.h> int main() { int i,j,n,a,b,c,t=0; char str[100]={0}; scanf("%d",&n); n=...
2020-08-21
0
548
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页