temp[i]=code[s-'A'];

时间: 2023-11-09 07:09:06 浏览: 26
This line of code assigns the corresponding Morse code for the character 's' to the 'i' index of the 'temp' array. Here, 's' is assumed to be an uppercase English alphabet character. The Morse code for each alphabet is stored in the 'code' array, where the index of the array corresponds to the alphabetical position of the character (e.g. code[0] contains the Morse code for 'A', code[1] contains the Morse code for 'B', and so on). Therefore, to get the Morse code for the character 's', we subtract the ASCII value of 'A' from the ASCII value of 's' to get the alphabetical position of 's', and use this value to index into the 'code' array. The resulting Morse code is then assigned to the 'i' index of the 'temp' array.

相关推荐

给这段代码添加中文注释:#include<stdio.h> #include<conio.h> #include<windows.h> struct student { char code[10]; float s1,s2,s3; float score; char grade; }temp; void set(int *choice) { printf(" ******* 1、从文件读取数据 *******\n"); printf(" ******* 2、计算并显示成绩 *******\n"); printf(" ******* 3、按等级查询 *******\n"); printf(" ******* 4、按总评成绩排序 *******\n"); printf(" ******* 5、按学号查询 *******\n"); printf(" ******* 6、查询所有等级 *******\n"); printf(" ******* 7、保存到文件 *******\n"); printf(" ******* 0、退出系统 *******\n\n"); printf("请选择您所需要操作的功能:"); *choice=getch(); } void dispinfo() { system("cls"); printf("\n\n"); printf(" *********************** 欢迎成绩核算系统 **********************\n\n"); printf(" *********************** **************** **********************\n\n"); } int duqu(struct student *list) { int n; int i=0; FILE *fp; fp=fopen("C:\Users\dell\Desktop\软件设计-源文件\A3-2","r"); fscanf(fp,"%d",&n); for(i=0;i<n;i++) { fscanf(fp,"%s %f %f %f",list[i].code,&list[i].s1,&list[i].s2,&list[i].s3); } printf("学号 平时成绩 期中成绩 期末成绩 \n"); for(i=0;i<n;i++) printf("\t %s %5.1lf %5.1lf %5.1lf \n",list[i].code,list[i].s1,list[i].s2,list[i].s3); printf("\n\n\n ****** 读取文件成功!摁任意键继续! ****** \n"); getch(); fclose(fp); return n; } void view(struct student *list,int amount) { int i=0; float average=0; printf("\n 学号 总评 等级 \n"); for(i=0;i<amount;i++) { average+=list[i].score; printf("%10s %6.1f %c \n",list[i].code,list[i].score,list[i].grade); } average/=amount; printf(" 本班总人数 %d 本班平均成绩 %.1f\n",amount,average); printf("\n\n\n\n\n ***** 摁任意键继续! ****** \n"); getch(); } void paixu(struct student *list,int amount) { float temp; char temp1; char temp2[10]; int i,j; for(i=0;i<amount;i++) for(j=i+1;j<amount;j++) { if(list[j].score>list[i].score) { temp=list[j].score; list[j].score=list[i].score; list[i].score=temp; strcpy(temp2,list[j].code); strcpy(list[j].code,list[i].code); strcpy(list[i].code,temp2); temp=list[j].s1; list[j].s1=list[i].s1; list[i].s1=temp; temp=list[j].s2; list[j].s2=list[i].s2; list[i].s2=temp; temp=list[j].s3; list[j].s3=list[i].s3; list[i].s3=temp; temp1=list[j].grade; list[j].grade=list[i].grade; list[i].grade=temp1; } } view(list,amount); }

下面java代码转化为c import java.util.*; public class Main{ public static void main(String args[]) { Scanner scan = new Scanner(System.in); String line; while (scan.hasNextLine()) { line = scan.nextLine().trim(); // please write your code here String[] strs=line.split("\\s+"); int[]ints=new int[strs.length]; for(int i=0;i<strs.length;i++) { ints[i]=Integer.valueOf(strs[i]); } try { int[]ints1=sort(ints); for(int i=0;i<ints1.length;i++) { System.out.print(ints1[i]+" "); } } catch (Exception e) { e.printStackTrace(); } System.out.println(); } } static int[] sort(int[] sourceArray) throws Exception { int[] arr = Arrays.copyOf(sourceArray, sourceArray.length); int maxDigit = getMaxDigit(arr); return radixSort(arr, maxDigit); } static int getMaxDigit(int[] arr) { int maxValue = getMaxValue(arr); return getNumLenght(maxValue); } static int getNumLenght(long num) { if (num == 0) { return 1; } int lenght = 0; for (long temp = num; temp != 0; temp /= 10) { lenght++; } return lenght; } static int getMaxValue(int[] arr) { int maxValue = arr[0]; for (int value : arr) { if (maxValue < value) { maxValue = value; } } return maxValue; } static int[] radixSort(int[] arr, int maxDigit) { int mod = 10; int dev = 1; for (int i = 0; i < maxDigit; i++, dev *= 10,mod *= 10) { int[][] counter = new int[20][0]; for (int j = 0; j < arr.length; j++) { int bucket = ((arr[j] % mod) / dev)+10; counter[bucket] = arrayAppend(counter[bucket], arr[j]); } int pos = 0; for (int[] bucket : counter) { for (int value : bucket) { arr[pos++] = value; } } } return arr; } static int[] arrayAppend(int[] arr, int value) { arr = Arrays.copyOf(arr, arr.length + 1); arr[arr.length - 1] = value; return arr; } }

优化此程序段:void gradelist(struct student *list,int amount) { int i=0; printf("等级 人数 百分比 \n"); int j=0; for(i=0;i<amount;i++) { if(list[i].grade=='A') j++; } printf("\t\t A %d %6.3lf \n",j,(double)j/amount); j=0; for(i=0;i<amount;i++) { if(list[i].grade=='B') j++; } printf("\t\t B %d %6.3lf \n",j,(double)j/amount); j=0; for(i=0;i<amount;i++) { if(list[i].grade=='C') j++; } printf("\t\t C %d %6.3lf \n",j,(double)j/amount); j=0; for(i=0;i<amount;i++) { if(list[i].grade=='D') j++; } printf("\t\t D %d %6.3lf \n",j,(double)j/amount); j=0; for(i=0;i<amount;i++) { if(list[i].grade=='E') j++; } printf("\t\t E %d %6.3lf \n",j,(double)j/amount); printf("\n\n\n ****** 请摁任意键继续! ******"); getch(); } void find(struct student *list,int amount) { int i=0; int flag=1; char temp[10]; dispinfo(); int flag2; do { flag2=1; printf(" 请输入学号:"); scanf("%s",temp); for(i=0;i<amount;i++) { flag=strcmp(temp,list[i].code); if(flag==0) { flag2=0; break; } } if(flag2==1) printf(" 您所输入的学号不存在,请重新输入!\n"); }while(flag2); printf("\t\t 学号 总评 等级 \n"); printf("\t\t%10s %6.1f%6c \n",list[i].code,list[i].score,list[i].grade); printf("\n\n\n ****** 按任意键继续! ****** \n"); getch(); } void save(struct student *list,int amount) { int i=0; FILE *fp; fp=fopen("C:\Users\dell\Desktop\软件设计-源文件","w"); fprintf(fp,"\t\t 学号 总评 等级 \n"); for(i=0;i<amount;i++) { fprintf(fp,"\t\t %10s %6.1f %6c \n",list[i].code,list[i].score,list[i].grade); } printf("\n\n ****** 输出成功!请查看!摁任意键继续 ****** \n"); fclose(fp); getch(); } int main() { system("color F4"); struct student list[100]; int choice; int amount; while(1) { dispinfo(); set(&choice); switch(choice) { case '1':amount=duqu(list);break; case '2':calculate(list,amount);break; case '3':findgrade(list,amount);break; case '4':paixu(list,amount);break; case '5':find(list,amount);break; case '6':gradelist(list,amount);break; case '7':save(list,amount);break; case '0': system("cls"); printf("\n\n\n\n\n\n\n\n\n\n\n ******* 谢谢使用!欢迎再次光临! ******\n"); getch(); break; } } return 0; }

D:\zzz_aotjs>java -jar apktool.jar d zzz_jjtx.apk -o jjtxApk I: Using Apktool 2.5.0 on zzz_jjtx.apk I: Loading resource table... I: Decoding AndroidManifest.xml with resources... I: Loading resource table from file: C:\Users\Administrator\AppData\Local\apktool\framework\1.apk I: Regular manifest package... I: Decoding file-resources... I: Decoding values */* XMLs... I: Baksmaling classes.dex... I: Baksmaling classes2.dex... I: Copying assets and libs... I: Copying unknown files... I: Copying original files... D:\zzz_aotjs>java -jar apktool.jar b jjtxApk I: Using Apktool 2.5.0 I: Checking whether sources has changed... I: Smaling smali folder into classes.dex... I: Checking whether sources has changed... I: Smaling smali_classes2 folder into classes2.dex... I: Checking whether resources has changed... I: Building resources... W: invalid resource directory name: D:\zzz_aotjs\jjtxApk\res navigation brut.androlib.AndrolibException: brut.common.BrutException: could not exec (exit code = 1): [C:\Users\ADMINI~1\AppData\Local\Temp\brut_util_Jar_88738392895362090968935970785959065127.tmp, p, --forced-package-id, 127, --min-sdk-version, 21, --target-sdk-version, 28, --version-code, 23053102, --version-name, 1.0.2, --no-version-vectors, -F, C:\Users\ADMINI~1\AppData\Local\Temp\APKTOOL7172915232282895038.tmp, -e, C:\Users\ADMINI~1\AppData\Local\Temp\APKTOOL4592746138281254561.tmp, -0, arsc, -I, C:\Users\Administrator\AppData\Local\apktool\framework\1.apk, -S, D:\zzz_aotjs\jjtxApk\res, -M, D:\zzz_aotjs\jjtxApk\AndroidManifest.xml] D:\zzz_aotjs>

优化find函数并添加中文注释,要求将save函数写入find函数中,实现在find函数运行后会询问是否保存,如输入是则将查询到的结果保存到文件中,如输入否,则正常退出:void find(struct student *list, int amount) { int i = 0; int flag = 1; char temp[10]; dispinfo(); // 显示菜单信息 int flag2; do { flag2 = 1; printf(" 请输入学号:"); scanf("%s", temp); // 获取用户输入的学号 for (i = 0; i < amount; i++) { flag = strcmp(temp, list[i].code); // 比较用户输入的学号和学生信息中的学号 if (flag == 0) { // 如果学号匹配成功 flag2 = 0; break; } } if (flag2 == 1) printf(" 您所输入的学号不存在,请重新输入!\n"); // 如果没有匹配成功,提示用户重新输入 } while (flag2); printf("\t\t 学号 总评 等级 \n"); printf("\t\t%10s %6.1f%6c \n", list[i].code, list[i].score, list[i].grade); // 输出匹配成功的学生信息 printf("\n\n\n ****** 按任意键继续! ****** \n"); getch(); // 等待用户按键 } void save(struct student *list, int amount) { int i = 0; FILE *fp; fp = fopen("C:\Users\dell\Desktop\软件设计-源文件\A3\find_out.txt", "w"); // 打开文件 fprintf(fp, "\t\t 学号 总评 等级 \n"); for (i = 0; i < amount; i++) { fprintf(fp, "\t\t %10s %6.1f %6c \n", list[i].code, list[i].score, list[i].grade); // 将学生信息写入文件中 } printf("\n\n ****** 输出成功!请查看!摁任意键继续 ****** \n"); fclose(fp); // 关闭文件 getch(); // 等待用户按键

import numpy as np import numpy.fft as fft import scipy.ndimage as nd import imageio import scipy.misc as misc from math import pi #Read in source image #source = nd.imread("einstein.bmp", flatten=True) source = imageio.imread("einstein.bmp", as_gray=True) #Pad image to simulate oversampling pad_len = len(source) padded = np.pad(source, ((pad_len, pad_len),(pad_len, pad_len)), 'constant', constant_values=((0,0),(0,0))) ft = fft.fft2(padded) #simulate diffraction pattern diffract = np.abs(ft) l = len(padded) #keep track of where the image is vs the padding mask = np.ones((pad_len+2,pad_len+2)) mask = np.pad(mask, ((pad_len-1, pad_len-1),(pad_len-1, pad_len-1)), 'constant', constant_values=((0,0),(0,0))) #Initial guess using random phase info guess = diffract * np.exp(1j * np.random.rand(l,l) * 2 * pi) #number of iterations r = 801 #step size parameter beta = 0.8 #previous result prev = None for s in range(0,r): #apply fourier domain constraints update = diffract * np.exp(1j * np.angle(guess)) inv = fft.ifft2(update) inv = np.real(inv) if prev is None: prev = inv #apply real-space constraints temp = inv for i in range(0,l): for j in range(0,l): #image region must be positive if inv[i,j] < 0 and mask[i,j] == 1: inv[i,j] = prev[i,j] - beta*inv[i,j] #push support region intensity toward zero if mask[i,j] == 0: inv[i,j] = prev[i,j] - beta*inv[i,j] prev = temp guess = fft.fft2(inv) #save an image of the progress if s % 10 == 0: #imageio.imsave("/Users/chasegoddard/Stuff/CDI/code/save/progress" + str(s) + # ".bmp", prev) imageio.imsave("C:/Users/Administrator/Desktop/仿真结果/结果" + str(s) + ".bmp", prev) print(s)

给这段代码添加中文注释:#include<stdio.h> #include<conio.h> #include<windows.h> struct student { char code[10]; float s1,s2,s3; float score; char grade; }temp; void set(int *choice) { printf(" ******* 1、从文件读取数据 *******\n"); printf(" ******* 2、计算并显示成绩 *******\n"); printf(" ******* 3、按等级查询 *******\n"); printf(" ******* 4、按总评成绩排序 *******\n"); printf(" ******* 5、按学号查询 *******\n"); printf(" ******* 6、查询所有等级 *******\n"); printf(" ******* 7、保存到文件 *******\n"); printf(" ******* 0、退出系统 *******\n\n"); printf("请选择您所需要操作的功能:"); *choice=getch(); } void dispinfo() { system("cls"); printf("\n\n"); printf(" *********************** 欢迎成绩核算系统 **********************\n\n"); printf(" *********************** **************** **********************\n\n"); } int duqu(struct student *list) { int n = 0; FILE fp = fopen("C:\Users\dell\Desktop\软件设计-源文件\A3\note.txt", "r"); if (fp == NULL) { printf("无法打开文件"); return n; } char line[100]; fgets(line, 100, fp); sscanf(line, "%d", &n); printf("\n"); // 空一行 printf(" 学号 平时成绩 期中成绩 期末成绩 \n"); // 输出表头 for (int i = 0; i < n; i++) { fgets(line, 100, fp); sscanf(line, "%s %f %f %f", list[i].code, &list[i].s1, &list[i].s2, &list[i].s3); printf("\t %s %5.1lf %5.1lf %5.1lf \n", list[i].code, list[i].s1, list[i].s2, list[i].s3); } printf("\n\n\n ****** 读取文件成功! 按任意键继续! ****** \n"); fclose(fp); while (getchar() != '\n'); // 等待用户按下回车键继续 return n; } void view(struct student list, int amount) { float sum = 0, average = 0; printf("\n 学号 总评 等级 \n"); for (int i = 0; i < amount; i++) { sum += list[i].score; printf("%10s %6.1f %c \n", list[i].code, list[i].score, list[i].grade); } average = sum / amount; printf(" 本班总人数 %d 本班平均成绩 %.1f\n", amount, average); printf("\n\n\n\n\n ***** 摁任意键继续! ****** \n"); getch(); } void paixu(struct student list, int amount) { for (int i = 0; i < amount; i++) { for (int j = i + 1; j < amount; j++) { if (list[j].score > list[i].score) { struct student temp = list[j]; list[j] = list[i]; list[i] = temp; } } } view(list, amount); } void calculate(struct student list[], int amount) { for(int i = 0; i < amount; i++) { float score = list[i].s10.3 + list[i].s20.3 + list[i].s30.4; list[i].score = score; if(score >= 90) { list[i].grade = 'A'; } else if(score >= 80) { list[i].grade = 'B'; } else if(score >= 70) { list[i].grade = 'C'; } else if(score >= 60) { list[i].grade = 'D'; } else { list[i].grade = 'E'; } } dispinfo(); view(list, amount); }

优化这个方法 this.LinksData = function (m_List,transportID) local curRouteConf = {} local tc= mainPlayer.player:FindClosestCharacter(CharacterType.TreasureCase, transportID,0,32) if tc ~= nil then local endPoint = AllPoints[table_count(AllPoints)] table.remove(AllPoints,table_count(AllPoints)) return endPoint end local tc = nil for i = 0,m_List.Count-1 do local value = Logic.TabConfig.RoutePoint_InfoMgr.instance:GetValueByIndex(i) local Links = ListToTable(value.TeleLinks) local route = nil local moveData = nil if mainPlayer.player.CurrentSite >= 200 then if value.ID % 1000 >= 300 and table_find(Links,transportID) ~= false then route = LogicWorld.DynamicMap.instance.m_RoutePoint:FindRoute(mainPlayer.player.transform.position, Vector3.zero, value.ID, 0) tc = mainPlayer.player:FindClosestCharacter(CharacterType.TreasureCase, value.Data,0,32) if route or tc ~= nil then moveData = LogicWorld.DynamicMap.instance.m_RoutePoint:CreateRouteMoveData(mainPlayer.player, route, Vector3.zero) end if not moveData then local temp = {[1] = value.ID,pos = {value.Position[0],value.Position[1],value.Position[2]}} table.insert(AllPoints,temp) local nextPoint = this.LinksData(m_List,value.Data) if nextPoint == nil then table_removeValue(AllPoints,temp) else return nextPoint end else curRouteConf = {value.ID} return curRouteConf; end end else if value.ID % 1000 < 300 and table_find(Links,transportID) ~= false then route = LogicWorld.DynamicMap.instance.m_RoutePoint:FindRoute(mainPlayer.player.transform.position, Vector3.zero, value.ID, 0) if route then moveData = LogicWorld.DynamicMap.instance.m_RoutePoint:CreateRouteMoveData(mainPlayer.player, route, Vector3.zero) end if not moveData then local temp = {[1] = value.ID,pos = {value.Position[0],value.Position[1],value.Position[2]}} table.insert(AllPoints,temp) local nextPoint = this.LinksData(m_List,value.Data) if nextPoint == nil then table_removeValue(AllPoints,temp) else return nextPoint end else curRouteConf = {value.ID} return curRouteConf; end end end end return nil end

最新推荐

recommend-type

nodejs-x64-0.10.21.tgz

Node.js,简称Node,是一个开源且跨平台的JavaScript运行时环境,它允许在浏览器外运行JavaScript代码。Node.js于2009年由Ryan Dahl创立,旨在创建高性能的Web服务器和网络应用程序。它基于Google Chrome的V8 JavaScript引擎,可以在Windows、Linux、Unix、Mac OS X等操作系统上运行。 Node.js的特点之一是事件驱动和非阻塞I/O模型,这使得它非常适合处理大量并发连接,从而在构建实时应用程序如在线游戏、聊天应用以及实时通讯服务时表现卓越。此外,Node.js使用了模块化的架构,通过npm(Node package manager,Node包管理器),社区成员可以共享和复用代码,极大地促进了Node.js生态系统的发展和扩张。 Node.js不仅用于服务器端开发。随着技术的发展,它也被用于构建工具链、开发桌面应用程序、物联网设备等。Node.js能够处理文件系统、操作数据库、处理网络请求等,因此,开发者可以用JavaScript编写全栈应用程序,这一点大大提高了开发效率和便捷性。 在实践中,许多大型企业和组织已经采用Node.js作为其Web应用程序的开发平台,如Netflix、PayPal和Walmart等。它们利用Node.js提高了应用性能,简化了开发流程,并且能更快地响应市场需求。
recommend-type

node-v4.1.1-linux-armv6l.tar.xz

Node.js,简称Node,是一个开源且跨平台的JavaScript运行时环境,它允许在浏览器外运行JavaScript代码。Node.js于2009年由Ryan Dahl创立,旨在创建高性能的Web服务器和网络应用程序。它基于Google Chrome的V8 JavaScript引擎,可以在Windows、Linux、Unix、Mac OS X等操作系统上运行。 Node.js的特点之一是事件驱动和非阻塞I/O模型,这使得它非常适合处理大量并发连接,从而在构建实时应用程序如在线游戏、聊天应用以及实时通讯服务时表现卓越。此外,Node.js使用了模块化的架构,通过npm(Node package manager,Node包管理器),社区成员可以共享和复用代码,极大地促进了Node.js生态系统的发展和扩张。 Node.js不仅用于服务器端开发。随着技术的发展,它也被用于构建工具链、开发桌面应用程序、物联网设备等。Node.js能够处理文件系统、操作数据库、处理网络请求等,因此,开发者可以用JavaScript编写全栈应用程序,这一点大大提高了开发效率和便捷性。 在实践中,许多大型企业和组织已经采用Node.js作为其Web应用程序的开发平台,如Netflix、PayPal和Walmart等。它们利用Node.js提高了应用性能,简化了开发流程,并且能更快地响应市场需求。
recommend-type

node-v4.1.0-linux-arm64.tar.xz

Node.js,简称Node,是一个开源且跨平台的JavaScript运行时环境,它允许在浏览器外运行JavaScript代码。Node.js于2009年由Ryan Dahl创立,旨在创建高性能的Web服务器和网络应用程序。它基于Google Chrome的V8 JavaScript引擎,可以在Windows、Linux、Unix、Mac OS X等操作系统上运行。 Node.js的特点之一是事件驱动和非阻塞I/O模型,这使得它非常适合处理大量并发连接,从而在构建实时应用程序如在线游戏、聊天应用以及实时通讯服务时表现卓越。此外,Node.js使用了模块化的架构,通过npm(Node package manager,Node包管理器),社区成员可以共享和复用代码,极大地促进了Node.js生态系统的发展和扩张。 Node.js不仅用于服务器端开发。随着技术的发展,它也被用于构建工具链、开发桌面应用程序、物联网设备等。Node.js能够处理文件系统、操作数据库、处理网络请求等,因此,开发者可以用JavaScript编写全栈应用程序,这一点大大提高了开发效率和便捷性。 在实践中,许多大型企业和组织已经采用Node.js作为其Web应用程序的开发平台,如Netflix、PayPal和Walmart等。它们利用Node.js提高了应用性能,简化了开发流程,并且能更快地响应市场需求。
recommend-type

zigbee-cluster-library-specification

最新的zigbee-cluster-library-specification说明文档。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

实现实时数据湖架构:Kafka与Hive集成

![实现实时数据湖架构:Kafka与Hive集成](https://img-blog.csdnimg.cn/img_convert/10eb2e6972b3b6086286fc64c0b3ee41.jpeg) # 1. 实时数据湖架构概述** 实时数据湖是一种现代数据管理架构,它允许企业以低延迟的方式收集、存储和处理大量数据。与传统数据仓库不同,实时数据湖不依赖于预先定义的模式,而是采用灵活的架构,可以处理各种数据类型和格式。这种架构为企业提供了以下优势: - **实时洞察:**实时数据湖允许企业访问最新的数据,从而做出更明智的决策。 - **数据民主化:**实时数据湖使各种利益相关者都可
recommend-type

用matlab绘制高斯色噪声情况下的频率估计CRLB,其中w(n)是零均值高斯色噪声,w(n)=0.8*w(n-1)+e(n),e(n)服从零均值方差为se的高斯分布

以下是用matlab绘制高斯色噪声情况下频率估计CRLB的代码: ```matlab % 参数设置 N = 100; % 信号长度 se = 0.5; % 噪声方差 w = zeros(N,1); % 高斯色噪声 w(1) = randn(1)*sqrt(se); for n = 2:N w(n) = 0.8*w(n-1) + randn(1)*sqrt(se); end % 计算频率估计CRLB fs = 1; % 采样频率 df = 0.01; % 频率分辨率 f = 0:df:fs/2; % 频率范围 M = length(f); CRLB = zeros(M,1); for
recommend-type

JSBSim Reference Manual

JSBSim参考手册,其中包含JSBSim简介,JSBSim配置文件xml的编写语法,编程手册以及一些应用实例等。其中有部分内容还没有写完,估计有生之年很难看到完整版了,但是内容还是很有参考价值的。
recommend-type

"互动学习:行动中的多样性与论文攻读经历"

多样性她- 事实上SCI NCES你的时间表ECOLEDO C Tora SC和NCESPOUR l’Ingén学习互动,互动学习以行动为中心的强化学习学会互动,互动学习,以行动为中心的强化学习计算机科学博士论文于2021年9月28日在Villeneuve d'Asq公开支持马修·瑟林评审团主席法布里斯·勒菲弗尔阿维尼翁大学教授论文指导奥利维尔·皮耶昆谷歌研究教授:智囊团论文联合主任菲利普·普雷教授,大学。里尔/CRISTAL/因里亚报告员奥利维耶·西格德索邦大学报告员卢多维奇·德诺耶教授,Facebook /索邦大学审查员越南圣迈IMT Atlantic高级讲师邀请弗洛里安·斯特鲁布博士,Deepmind对于那些及时看到自己错误的人...3谢谢你首先,我要感谢我的两位博士生导师Olivier和Philippe。奥利维尔,"站在巨人的肩膀上"这句话对你来说完全有意义了。从科学上讲,你知道在这篇论文的(许多)错误中,你是我可以依
recommend-type

实现实时监控告警系统:Kafka与Grafana整合

![实现实时监控告警系统:Kafka与Grafana整合](https://imgconvert.csdnimg.cn/aHR0cHM6Ly9tbWJpei5xcGljLmNuL21tYml6X2pwZy9BVldpY3ladXVDbEZpY1pLWmw2bUVaWXFUcEdLT1VDdkxRSmQxZXB5R1lxaWNlUjA2c0hFek5Qc3FyRktudFF1VDMxQVl3QTRXV2lhSWFRMEFRc0I1cW1ZOGcvNjQw?x-oss-process=image/format,png) # 1.1 Kafka集群架构 Kafka集群由多个称为代理的服务器组成,这