ViewAssessmentResult:Multiple-ChoiceQuiz2Yourperformancewasasfollows:1.Thedegreeofatableisthenumberof_____inthetable.(a)keys(b)columns(c)rows(d)foreignkeysCorrectansweris(b)Yourscoreonthisquestionis:10.00Feedback:(b)--------------------------------------------------------------------------------2.Thearityofatableisthenumberof_____inthetable.(a)keys(b)columns(c)foreignkeys(d)rowsCorrectansweris(b)Yourscoreonthisquestionis:10.00Feedback:(b)--------------------------------------------------------------------------------3.Whatinformationisnecessarywhenspecifyingthestructureofatable?(a)thenameofthetableandtheamountofstoragespacetobeallocatedtothetable(b)thenameofthetable,thenamesofthetable'sattributes,thedatatypesofthetable'sattributes,theformatsofthetable'sattributes,andthemaximumnumberofrowsthatthetablecanhave(c)thenameofthetableandthenamesofthetable'sattributes(d)thenameofthetable,thenamesofthetable'sattributes,thedatatypesofattributes,andtheformatsofattributesCorrectansweris(d)Yourscoreonthisquestionis:10.00Feedback:(d)--------------------------------------------------------------------------------4.TheforeignkeyinatableT1_____thesame_____asthecorrespondingprimarykeyintableT2.musthave,nameneednothave,namemusthave,domain(a)I,II,andIII(b)IandII(c)IandIII(d)IIandIIICorrectansweris(d)Yourscoreonthisquestionis:10.00Feedback:(d)--------------------------------------------------------------------------------5.WhichofthefollowingSQLstatementscanbeusedtoaddarowtoatable?(a)CREATE(b)INSERT(c)APPEND(d)ADDCorrectansweris(b)
2024/12/2 8:58:25 259KB SSD7 Multiple-Choice
1
远端管理员建立0.准备您需要安装docker和dockercompose才能使用此工具。
1.克隆项目gitclonegit@github.com:lazy-ants/remote-manager.gitcdremote-manager2.初始设置makeinit或将来进行更新:makeupdate3.将服务器连接添加到配置使用您选择的编辑器打开config.json并添加服务器连接。
它的意思是“user@domain:port”,但是端口是可选的。
4.运行配置使用docker:dockerrun-it--rm-v"$PWD":/
2024/10/18 9:46:26 27KB docker cli productivity php
1
本框架提供了有关粒子群算法(PSO)和遗传算法(GA)的完整实现,以及一套关于改进、应用、测试、结果输出的完整框架。
本框架对粒子群算法与遗传算法进行逻辑解耦,对其中的改进点予以封装,进行模块化,使用者可以采取自己对该模块的改进替换默认实现组成新的改进算法与已有算法进行对比试验。
试验结果基于Excel文件输出,并可通过设定不同的迭代结束方式选择试验数据的输出方式,包括:1.输出随迭代次数变化的平均达优率数据(设定终止条件区间大于0)。
2.输出随迭代次数变化的平均最优值数据(设定终止条件区间等于0)。
本框架了包含了常用基准函数的实现以及遗传算法与粒子群算法对其的求解方案实现和对比,如TSP,01背包,Banana函数,Griewank函数等。
并提供大量工具方法,如KMeans,随机序列生成与无效序列修补方法等等。
对遗传算法的二进制编码,整数编码,实数编码,整数序列编码(用于求解TSP等),粒子群算法的各种拓扑结构,以及两种算法的参数各种更新方式均有实现,并提供接口供使用者实现新的改进方式并整合入框架进行试验。
其中还包括对PSO进行离散化的支持接口,和自己的设计一种离散PSO方法及其用以求解01背包问题的实现样例。
欢迎参考并提出宝贵意见,特别欢迎愿意协同更新修补代码的朋友(邮箱starffly@foxmail.com)。
代码已作为lakeast项目托管在GoogleCode:http://code.google.com/p/lakeasthttp://code.google.com/p/lakeast/downloads/list某些类的功能说明:org.lakest.common中:BoundaryType定义了一个枚举,表示变量超出约束范围时为恢复到约束范围所采用的处理方式,分别是NONE(不处理),WRAP(加减若干整数个区间长度),BOUNCE(超出部分向区间内部折叠),STICK(取超出方向的最大限定值)。
Constraint定义了一个代表变量约束范围的类。
Functions定义了一系列基准函数的具体实现以供其他类统一调用。
InitializeException定义了一个代表程序初始化出现错误的异常类。
Randoms类的各个静态方法用以产生各种类型的随机数以及随机序列的快速产生。
Range类的实现了用以判断变量是否超出约束范围以及将超出约束范围的变量根据一定原则修补到约束范围的方法。
ToStringBuffer是一个将数组转换为其字符串表示的类。
org.lakeast.ga.skeleton中:AbstractChromosome定义了染色体的公共方法。
AbstractDomain是定义问题域有关的计算与参数的抽象类。
AbstractFactorGenerator定义产生交叉概率和变异概率的共同方法。
BinaryChromosome是采用二进制编码的染色体的具体实现类。
ConstantFactorGenerator是一个把交叉概率和变异概率定义为常量的参数产生器。
ConstraintSet用于在计算过程中保存和获取应用问题的各个维度的约束。
Domain是遗传算法求解中所有问题域必须实现的接口。
EncodingType是一个表明染色体编码类型的枚举,包括BINARY(二进制),REAL(实数),INTEGER(整型)。
Factor是交叉概率和变异概率的封装。
IFactorGenerator参数产生器的公共接口。
Population定义了染色体种群的行为,包括种群的迭代,轮盘赌选择和交叉以及最优个体的保存。
org.lakeast.ga.chromosome中:BinaryChromosome二进制编码染色体实现。
IntegerChromosome整数编码染色体实现。
RealChromosome实数编码染色体实现。
SequenceIntegerChromosome整数序列染色体实现。
org.lakeast.pso.skeleton中:AbstractDomain提供一个接口,将粒子的位置向量解释到离散空间,同时不干扰粒子的更新方式。
AbstractF
2024/10/11 21:51:28 1.42MB 遗传算法 粒子群算法 GA PSO
1
Title:PythonGUIProgrammingCookbook2ndAuthor(s):BurkhardA.MeierPublisher:PacktPublishingYear:2017Edition:2ndLanguage:EnglishPages(biblio\tech):422\0ISBN:1787129454,9781787129450KeyFeaturesUseobject-orientedprogrammingtodevelopamazingGUIsinPythonCreateaworkingGUIprojectasacentralresourcefordevelopingyourPythonGUIsEasy-to-followrecipestohelpyoudevelopcodeusingthelatestreleasedversionofPythonBookDescriptionPythonisamulti-domain,interpretedprogramminglanguage.Itisawidelyusedgeneral-purpose,high-levelprogramminglanguage.Itisoftenusedasascriptinglanguagebecauseofitsforgivingsyntaxandcompatibilitywithawidevarietyofdifferenteco-systems.PythonGUIProgrammingCookbookfollowsatask-basedapproachtohelpyoucreatebeautifulandveryeffectiveGUIswiththeleastamountofcodenecessary.ThisbookwillguideyouthroughtheverybasicsofcreatingafullyfunctionalGUIinPythonwithonlyafewlinesofcode.EachandeveryrecipeaddsmorewidgetstotheGUIswearecreating.Whilethecookbookrecipesallstandontheirown,thereisacommonthemerunningthroughallofthem.AsourGUIskeepexpanding,usingmoreandmorewidgets,westarttotalktonetworks,databases,andgraphicallibrariesthatgreatlyenhanceourGUI'sfunctionality.ThisbookiswhatyouneedtoexpandyourknowledgeonthesubjectofGUIs,andmakesureyou'renotmissingoutinthelongrun.WhatyouwilllearnCreatetheGUIFormandaddwidgetsArrangethewidgetsusinglayoutmanagersUseobject-orientedprogrammingtocreateGUIsCreateMatplotlibchartsUsethreadsandtalkingtonetworksTalktoaMySQLdatabaseviatheGUIPerformunit-testingandinternationalizingtheGUIExtendtheGUIwiththird-partygraphicallibrariesGettoknowthebestpracticestocreateGUIsAbouttheAuthorBurkhardA.Meierhasmorethan17yearsofprofessionalexperienceworkinginthesoftwareindustryas
2024/7/20 6:36:30 14.27MB Python GUI Cookbook GUI
1
Theultra-compactbiosensorbasedonthetwo-dimensional(2D)photoniccrystal(PhC)microcavityisinvestigated.TheperformancesofthesensorareanalyzedtheoreticallyusingtheFabry-Perot(F-P)cavitymodelandsimulatedusingthefinite-differencetime-domain(FDTD)method.Thesimulationres
2024/7/1 8:29:28 422KB 折射率 传感器 光子晶体 微腔
1
Domain-SpecificModelingLanguage(DSML)definedbyinformalwaycannotpreciselyrepresentitsstructuralsemantics,sopropertiesofmodelssuchasconsistencycannotbesystematicallyanalyzedandverified.Inresponse,thepaperproposesanapproachforautomatical-lyreasoningconsistencyofDS
2024/6/29 11:30:31 3MB Domain-Specific Modeling Language (DSML);
1
AsaModel-DrivenDevelopmentmethodology(MDD)forthespecificdomain,Domain-SpecificModeling(DSM)hasbeenwidelyandsuccessfullyusedinsystemdesignandanalysisofspecificareas.Inspiteofitsgeneralimportant,duetoinformaldefinitionofDomain-SpecificModelingLanguage(DSMLs),t
1
将kindeditor与ssm完美整合,如果你不是ssm框架,也没关系,核心的代码都已做了修改。
完美显示文件、图片、视频的上传4.11kindeditor版本:新增:俄语语言包,感谢ValeryVotintsev(http://codersclub.org/)。
改善:语言包文件名标准化,zh_CN->zh-CN,zh_TW->zh-TW。
Bugfix:[IE6]当前页面设置了document.domain,销毁编辑器会报错。
Bugfix:行首全角空格被过滤。
Bugfix:修复多语言包的一些小错误。
Bugfix:[IE11]有些设备报错不能显示,对象不支持attachEvent属性或方法。
Bugfix:retina屏幕上按钮裂开。
Bugfix:编辑图片后点击插入图片,弹出两个dialog。
2024/5/1 4:10:08 9.55MB kindeditor SSM 文件上传 图片批量上传
1
简单的页面注册到数据库,使用一些列httpServletRequest,httpServlet,domain,DBUtils类,dao类,mysql注册驱动器,配置dbinfo.properties文件。
2023/11/7 9:55:47 782KB 页面注册
1
C#中DataGridView修改后直接保存到数据库实例程序,绝对可用,内附源码,有注释主要代码://单元格编辑结束后触发privatevoiddataGridView1_CellEndEdit_1(objectsender,DataGridViewCellEventArgse){try{stringrowid=this.dataGridView1.Rows[e.RowIndex].Cells[0].Value.ToString();stringcellhead=dataGridView1.Columns[e.ColumnIndex].DataPropertyName;stringcellvalue=this.dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString();if(cellhead=="domain"){cellhead="[domain]";}else{}if(cellvalue=="True"&&cellhead=="passed"){cellvalue="1";}else{if(cellhead=="passed"){cellvalue="0";}else{}}stringsqlcmd="updatedomain_infoset"+cellhead+"='"+cellvalue+"'whereid="+rowid;if(dbo.DBcmd(sqlcmd)){resultshow.Text="编辑成功";}else{resultshow.Text="编辑失败";}}catch{MessageBox.Show("异常","错误");}}
2023/9/13 12:25:47 176KB DataGridView 直接保存 数据库 实例
1
共 24 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡