原创 PTA-12-使用函數求特殊a串數列和

#include <stdio.h> int fn( int a, int n ); int SumA( int a, int n ); int main() { int a, n; scanf("%d %d",

原创 PTA-11-分類統計字符個數

#include <stdio.h> #define MAXS 15 void StringCount( char s[] ); void ReadString( char s[] ); /* 由裁判實現,略去不表 */ int m

原创 基於Open vSwitch的傳統限速和SDN限速轉載

https://www.sdnlab.com/23289.html?from=timeline&isappinstalled=0

原创 電腦系統系列1-電腦軟硬件以及系統科普彙總

操作系統( OS)是管理計算機硬件與軟件資源的計算機程序,同時也是計算機系統的內核與基石。操作系統也提供一個讓用戶與系統交互的操作界面。 1、windows操作系統 windows操作系統是微軟公司開發的電腦操作系統,主用於臺式和筆記本電

原创 SDN架構中--控制器實現之一:POX控制器的研究

  POX的自帶的組件來分析: https://blog.csdn.net/jk19920523/article/details/40426341?utm_source=blogxgwz3   開始構建自己的 POX 模塊的常用方法是將現

原创 SDN網絡蒐集材料連接合集

1.網絡架構七層和五層,四層模型 https://blog.csdn.net/u010359398/article/details/82142449   網絡流量分類 https://max.book118.com/html/2017/0

原创 強化學習中sarsa算法是不是比q-learning算法收斂速度更慢?

  強化學習中sarsa算法是不是比q-learning算法收斂速度更慢? https://www.zhihu.com/question/268461866/answer/355932427

原创 網絡--分時傳輸

https://wenku.baidu.com/view/d5bff1f5001ca300a6c30c22590102020640f27a.html

原创 如何看英語文獻

參考文檔地址彙總 https://www.zhihu.com/question/345516318/answer/965509825 https://www.zhihu.com/question/345516318/answer/

原创 PTA-4-符號函數

#include <stdio.h> int sign( int x ); int main() { int x; scanf("%d", &x); printf("sign(%d) = %d\n", x,

原创 PTA-5-使用函數求奇偶數和

#include <stdio.h> #define MAXN 10 int even( int n ); int OddSum( int List[], int N ); int main() { int List[MA

原创 PTA-9-使用函數輸出水仙花數

 原代碼博客鏈接:https://www.cnblogs.com/2018jason/p/10929658.html #include <stdio.h> int narcissistic(int number); void Print

原创 PTA-6-使用函數計算兩點間的距離

#include <stdio.h> #include <math.h> double dist( double x1, double y1, double x2, double y2 ); int main() { dou

原创 PTA-7-使用函數求素數之和

  #include <stdio.h> #include <math.h> int prime( int p ); int PrimeSum( int m, int n ); int main() { int m, n,

原创 c語言與c++語言的區別?和快速掌握基本語法

c語言與c++語言的區別?和快速掌握基本語法上手一、c語言和c++語言的區別二、快速掌握基本語法(一)c語言1.程序結構2.基本語法、數據類型、變量和常量、運算符3.結構(判斷、循環、函數)4.數組、指針、字符串、結構體4.常用標