ICode9

精准搜索请尝试: 精确搜索
  • .Net中的反应式编程(Reactive Programming)2021-12-12 15:00:38

    一、反应式编程(Reactive Programming) 1、什么是反应式编程:反应式编程(Reactive programming)简称Rx,他是一个使用LINQ风格编写基于观察者模式的异步编程模型。简单点说Rx = Observables + LINQ + Schedulers。 2、为什么会产生这种风格的编程模型?我在本系列文章开始的时候说过

  • c programming language 英语原版第二版2021-12-06 14:04:13

    下载地址 http://math.ecnu.edu.cn/~jypan/Teaching/ParaComp/books/The C Programming Language 2nd.pdf 豆瓣介绍 https://book.douban.com/subject/1882483/

  • 查找书籍 PTA C语言2021-11-28 20:06:31

    给定n本书的名称和定价,本题要求编写程序,查找并输出其中定价最高和最低的书的名称和定价。 输入格式: 输入第一行给出正整数n(<10),随后给出n本书的信息。每本书在一行中给出书名,即长度不超过30的字符串,随后一行中给出正实数价格。题目保证没有同样价格的书。 输出格式: 在一行中按

  • C语言 查找书籍(结构体)2021-11-26 20:03:37

    Description 给定n本书的名称和定价,本题要求编写程序,查找并输出其中定价最高和最低的书的名称和定价。 Input 输入第一行给出正整数n(\lt10<10),随后给出n本书的信息。每本书在一行中给出书名,即长度不超过30的字符串,随后一行中给出正实数价格。题目保证没有同样价格的书。 Output

  • Hands-on C++ Game Animation Programming阅读笔记(五)2021-11-21 23:02:54

    Chapter 7: Exploring the glTF File Format glTF is a standard format that can store both mesh and animation data. a file format that contains everything you need to display animated models. It’s a standard format that most three-dimensional content crea

  • 2020 China Collegiate Programming Contest - Mianyang Site D.Defuse the Bombs 二分答案2021-11-17 17:03:28

    题目分析 题目大意:给定一个炸弹爆炸的时间序列,每次操作可以选择一个炸弹,使其爆炸时间延长 1 S 1S 1S,在完成该操作后,所有的炸弹的爆炸时间缩短

  • ZUCC_Object Oriented Programming_Lab05 Objects and Classes2021-11-16 11:31:55

    感谢LDingHui同学提供的代码 Lab Report 05 Note: All your lab reports should be uploaded to BB before the deadline. Caution Must be original works, to prohibit any copying or plagiarism 一、 Experimental Purposes and Requirements to describe objects and cl

  • ZUCC_Object Oriented Programming_Lab03 Selections&Loops&Characters&Strings2021-11-16 09:33:46

    感谢LDingHui同学提供的代码 Lab Report 03 Note: All your lab reports should be uploaded to BB before the deadline. Caution Must be original works, to prohibit any copying or plagiarism 一、 Experimental Purposes and Requirements to learn how to selections

  • The Rust Programming Language - 第8章 常见集合 - 8.2 字符串2021-11-13 22:30:26

    8 常见集合 Rust标准库中包含一系列被称为“集合”的非常有用的数据结构。大部分其他数据类型都代表了一个值,但集合可以包含多个值 与内建的元组和数组不同,集合指向的数据存放在堆上,这意味着数据的数量不必在编译时就已知,并且还可以随着程序的运行增长和缩小。每种集合都有着

  • 运筹学 --- 概述2021-11-13 10:58:40

    运筹学 — 概述 概述 概述 主要研究人类对各种资源的运用及筹划,在满足一定约束的条件下,以期发挥有限资源的最大效益,达到总体最优的目标--所谓运筹帷幄最初由钱学森老先生引入中国,据说最开始的用途是优化航空/军工等领域。 别名 数学规划 (math programming)、优化 (optimi

  • 实验二截图及链接201913252021-11-11 15:06:44

                       https://gitee.com/sssyyyMVP/system-programming/tree/master/

  • The 2019 China Collegiate Programming Contest Harbin Site2021-11-11 14:04:16

    就是说,永远不会博弈枯了枯了。 来写点一套题的题解吧(如果我会的话。 #### A - Artful Paintings 场A(-6)。 考虑染球个数的前缀和,会发现满足一些不等式: $s_i-s_{i-1} \ge 0,s_i-s_{i-1} \le 1,s_{r_i}-s_{l_i-1} \ge k_i,s_{n}-(s_{r_i}-s_{l_i-1}) \ge k_i$ 。然后会发现有个s_n

  • [POI2011]PRO-Programming Contest2021-11-06 19:04:01

    Bzoj2557     #include<bits/stdc++.h> #define int long long using namespace std; const int N=555; const int M=3e5+7; int n,m,r,t,T; int _; int head[N],nxt[M],to[M]; void add(int x,int y) { _++; nxt[_]=head[x]; head[x]=_; to[_]=y;

  • The 2019 China Collegiate Programming Contest Harbin Site2021-11-06 01:04:18

    打得很烂,打铁了,赛后补到了银牌题差不多(银牌还要手速),只能说实在是经验太少了。加油吧! J. Justifying the Conjecture ​ 题意:问一个数能不能分解成一个\(x\)和一个\(y\),使得\(x\)是质数而且\(y\)为合数 ​ 题解:签到题,对于大于2的偶数显然都可以拆成2+一个偶数,大于5的奇数都可以拆成

  • The art of multipropcessor programming 读书笔记-3. 自旋锁与争用(1)2021-11-05 09:06:22

    本系列是 The art of multipropcessor programming 的读书笔记,在原版图书的基础上,结合 OpenJDK 11 以上的版本的代码进行理解和实现。并根据个人的查资料以及理解的经历,给各位想更深入理解的人分享一些个人的资料 自旋锁与争用 1. 再论 TAS 与 TTAS 的自旋锁 在前面的章节

  • [paper reading][IJCAI 2020] Turning 30: New Ideas in Inductive Logic Programming2021-11-02 01:31:07

    目录3 Learning Background Knowledge3.1 Predicate Invention3.2 Lifelong Learning IJCAI 2020 https://www.ijcai.org/proceedings/2020/0673.pdf A short survey on ILP. recursive, generalize, learning BK, ASP, NN, future directions 3 Learning Background Knowledg

  • 《Integer Programming》第三章读书笔记2021-10-28 15:58:09

    3 Well-Solved Problems 3.1 Properties of Easy Problems In examining a problem to see if it has an efficient algorithm, the following four properties often go together: In the next sections, we examine several classes of problems for which we will see t

  • 习题9-4 查找书籍 (20 分)PTA2021-10-26 21:06:00

    给定n本书的名称和定价,本题要求编写程序,查找并输出其中定价最高和最低的书的名称和定价。 输入格式: 输入第一行给出正整数n(<10),随后给出n本书的信息。每本书在一行中给出书名,即长度不超过30的字符串,随后一行中给出正实数价格。题目保证没有同样价格的书。 输出格式: 在一行中按

  • The 2019 China Collegiate Programming Contest Harbin Site2021-10-24 10:35:05

    感觉这场好简单,去年场上做的CCPC都好难,嘤嘤嘤 这场的题目都挺卡的。 L. LRU Algorithm 只能说这个时间非常的卡。 写了哈希和散列表T掉了,然后改成暴力for询问判断,这下时间正常了,然后一直wa。最后发现询问全\(0\)的时候也要输出\(\text{Yes}\),是不是有一点点坑。 哈希需要注意: 哈

  • 大学四年学习内容规划2021-10-23 13:35:08

    四年学习内容规划 大一 打好基础,学好《计算机科学概论》,看完《看漫画学python》 摘抄自娄老师博客https://www.cnblogs.com/rocedu/p/4919211.html 学好编程有四个方面:语言、算法和数据结构、系统调用和设计。 打好这四个方面的基础看Brian W. Kernighan的书基本上就够了:《C程序

  • The 2020 ICPC Asia Taipei-Hsinchu Site Programming Contest I题Critical Structures2021-10-22 13:03:28

    原题链接Critical Structures #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> pii; #define mp make_pair #define newline puts("") const int maxn = 1010; int n,m; vector<int> G[maxn]; int dfn[

  • MIT/Unit 5: Object Oriented Programming/9. Classes and Inheritance2021-10-21 18:04:41

               Video: Class Instances    

  • programming methods and principle2021-10-20 12:04:17

    0x01 program strategies IT IS WORTHWHILE TO MAP OUT A STRATEGY BEFORE STARTING TO CODE part A decomposition a good decomposition will allow you to isolate the deatils for all tricky parts into just a few functions. part B incremental do not try to solve i

  • RDMA 学习资源[WIP]2021-10-15 09:32:17

    文档说明 IB Specification 用户手册 RDMA Aware Networks Programming User Manual

  • python - socket programming2021-10-08 10:04:01

    server.py           client.py    

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有