作者:yunjinqi   类别:    日期:2023-10-13 22:13:55   阅读:105 次   消耗积分:0 分
Apache Arrow 概述Apache Arrow 是一个软件开发平台,用于构建能够处理和传输大型数据集的高性能应用程序。它的设计目标是提高分析算法的性能和提高数据在不同系统或编程语言...
作者:yunjinqi   类别:    日期:2023-10-06 10:56:51   阅读:110 次   消耗积分:0 分
最近在看c++ primer plus第六版,虽然学了很久的c++了,看这本经典书依然有收获。碰到一个有意思的程序,记录一下。#include <iostream> #include <ctime> int main(){ s...
作者:yunjinqi   类别:    日期:2023-06-04 19:25:39   阅读:94 次   消耗积分:0 分
#include <stdio.h> int main(){     int m,n,q;     int t,c;     int t_arr[1000];     int c_arr[1000];     int m_count = 0;     in...
作者:yunjinqi   类别:    日期:2023-06-04 19:23:58   阅读:99 次   消耗积分:0 分
#include <stdio.h> #include <string.h> int str_divide_2(char c){     if (c=='0' || c=='2' || c=='4' || c=='6' || c=='8'){         return...
作者:yunjinqi   类别:    日期:2023-06-04 19:22:04   阅读:103 次   消耗积分:0 分
#include <stdio.h> int main(){     int n,k,s;     int v1,v2;     int t_arr[291]={0};     int p_arr[291]={0};     int sum=0;     //...
作者:yunjinqi   类别:    日期:2023-06-04 19:20:35   阅读:101 次   消耗积分:0 分
#include <stdio.h> int main(){     int arr[6];     int a,n,count;     // 获取第一行数据     for (int i=0;i<6;i++){         if (sc...
作者:yunjinqi   类别:    日期:2023-06-04 19:19:07   阅读:101 次   消耗积分:0 分
#include <stdio.h> long long factn(int n){     long long sum=1;     if (n<2){return 1;}     for (int i=2;i<=n;i++){         sum*=i;...
作者:yunjinqi   类别:    日期:2023-06-04 19:17:34   阅读:109 次   消耗积分:0 分
#include <stdio.h> int main(){     int a,b,c,d;     if (scanf("%d %d %d %d",&a,&b,&c,&d)!=EOF){         // 两人一起进         if ...
作者:yunjinqi   类别:    日期:2023-06-04 19:15:07   阅读:102 次   消耗积分:0 分
#include <stdio.h> int main(){     int n,v;     int days;     if (scanf("%d %d",&n,&v)!=EOF){         days = n/v;     }     p...
作者:yunjinqi   类别:    日期:2023-06-04 19:13:22   阅读:107 次   消耗积分:0 分
#include <stdio.h> int main(){     printf("I'm gonna win! Today!\n");     printf("2022-04-23\n");     return 0; }...
上一页   1   2   3   4   5   6   7   8   9   10   11   12   13   14   15   16   17   18   19   20   21   22   23   24   25   26   27   28   29   30   31   32   33   34   35   36   37   38   39   下一页