码迷,mamicode.com
首页 > 编程语言 > 日排行
python-modules
python模块的使用 ...
分类:编程语言   时间:2017-09-10 19:43:11    阅读次数:140
《算法技术手册》George T. Heineman(作者)epub+mobi+azw3
内容简介 开发健壮的软件需要高效的算法,然后程序员们往往直至问题发生之时,才会去求助于算法。《算法技术手册》讲解了许多现有的算法,可用于解决各种问题。通过阅读它,可以使您学会如何选择和实现正确的算法,来达成自己的目标。另外,书中的数学深浅适中,足够使您可以了解并分析算法的性能。较之理论而言,《算法技 ...
分类:编程语言   时间:2017-09-10 19:44:00    阅读次数:177
python攻克之路day2
day2内容 1.二进制以及编码 python解释器在加载 .py 文件中的代码时,会对内容进行编码(默认ascill) ASCII(American Standard Code for Information Interchange,美国标准信息交换代码)是基于拉丁字母的一套电脑编码系统,主要用于 ...
分类:编程语言   时间:2017-09-10 19:44:38    阅读次数:189
【模板】manacher算法
传送门 某篇好文章 ...
分类:编程语言   时间:2017-09-10 19:45:07    阅读次数:214
配置Spring Data Redis
事前准备 1、下载redis https://github.com/MicrosoftArchive/redis/releases/tag/win-3.2.100 2、下载redis可视化工具 https://redisdesktop.com/download 3、启动redis cd %redis ...
分类:编程语言   时间:2017-09-10 19:45:15    阅读次数:134
leetcode算法:Trim a Binar Search Tree
Given a binary search tree and the lowest and highest boundaries as L and R, trim the tree so that all its elements lies in [L, R] (R >= L). You might... ...
分类:编程语言   时间:2017-09-10 19:45:52    阅读次数:158
Spring Framework基础学习
Spring Framework基础学习 Core support for dependency injection,transaction management,web applications,data access,messaging,testing and more 推荐的官方文章:http ...
分类:编程语言   时间:2017-09-10 19:46:01    阅读次数:258
Python 输入输出练习,运算练习,turtle初步练习
练习1: 练习2: 练习3: 练习4: 练习5: 练习6: 练习7: ...
分类:编程语言   时间:2017-09-10 19:46:19    阅读次数:140
C++primer 14.2.1节练习
练习14.6 练习14.7 练习14.8 类似上题,很简单,细心注意一下就行了 ...
分类:编程语言   时间:2017-09-10 19:47:42    阅读次数:230
2017.9.10 织布计数---字符串的拆分//c++
1 #include 2 #include 3 #include 4 using namespace std; 5 void check(string a){ 6 int cnt_index=0,cnt_int=0; 7 for(unsigned j=0;j='0'&&a[j]>n; 50 stri... ...
分类:编程语言   时间:2017-09-10 19:48:13    阅读次数:176
python操作Excel读写--使用xlrd
一、安装xlrd模块 到python官网下载http://pypi.python.org/pypi/xlrd模块安装,前提是已经安装了python 环境。 二、使用介绍 1、导入模块 import xlrd 2、打开Excel文件读取数据 data = xlrd.open_workbook('exc ...
分类:编程语言   时间:2017-09-10 19:49:31    阅读次数:240
leetcode算法: Keyboard Row
Given a List of words, return the words that can be typed using letters of alphabet on only one row's of American keyboard like the image below.Americ... ...
分类:编程语言   时间:2017-09-10 19:50:15    阅读次数:205
[c/c++] programming之路(21)、字符串(二)
一、for /l %i in (1,1,5) do calc 等命令行参数 二、变色龙 三、gets和puts(对比scanf和printf) puts()函数自动换行。 四、strstr(在串中查找指定字符串的第一次出现) 五、strcmp以及自己实现这个函数功能(mystrcmp) 六、strn ...
分类:编程语言   时间:2017-09-10 19:50:23    阅读次数:198
Spring MVC配置文件
都说开发Spring Web程序的配置文件很繁琐,所以就写了一篇配置博客, 首先是pom.xml文件 spring-core.xml配置文件 spring-datarouce.xml spring-mybatis.xml spring--mvc.xml ku.properties log4j.pro ...
分类:编程语言   时间:2017-09-10 19:50:34    阅读次数:144
leetcode算法:Reshape the Matrix
In MATLAB, there is a very useful function called 'reshape', which can reshape a matrix into a new one with different size but keep its original data.... ...
分类:编程语言   时间:2017-09-10 19:51:07    阅读次数:163
Java Web应用开发技术简介
java web应用一般定义为:一个有HTML/XML文档,java Servlet,JSP(java Server Pages),JSTL(Java Server Pages Standard Tag Library),类以及其他任何种类文件可以捆绑起来,并在来自多个厂商的多个Web容器上运行的W ...
分类:编程语言   时间:2017-09-10 19:51:29    阅读次数:161
leetcode算法:Island Perimeter
You are given a map in form of a two-dimensional integer grid where 1 represents land and 0 represents water. Grid cells are connected horizontally/ve... ...
分类:编程语言   时间:2017-09-10 19:52:17    阅读次数:141
Javascript - ExtJs - Itemselector
引入扩展文件 Extjs4.2根目录下: examples \ ux \ css \ images (这是选择按钮的图片资源)examples \ ux \ css \ ItemSelector.cssexamples \ ux \ form \ MultiSelect.jsexamples \ u ...
分类:编程语言   时间:2017-09-10 19:53:18    阅读次数:237
Python学习笔记3_列表操作
1.1 遍历整个列表 需要对列表中的每个元素都执行相同的操作时,可使用Python中的for循环。 如,让Python从列表magicians中取出一个名字,并将其存储在变量magician中。 for magician in magicians: 让Python获取列表magicians中的第一个 ...
分类:编程语言   时间:2017-09-10 20:40:01    阅读次数:159
java设计模式系列之设计模式概要(1)
一、什么是设计模式 设计模式(Design pattern)是一套被反复使用、多数人知晓的、经过分类编目的、代码设计经验的总结。使用设计模式是为了可重用代码、让代码更容易被他人理解、保证代码可靠性。 毫无疑问,设计模式于己于他人于系统都是多赢的,设计模式使代码编制真正工程化,设计模式是软件工程的基石 ...
分类:编程语言   时间:2017-09-10 20:41:04    阅读次数:120
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!