码迷,mamicode.com
首页 > 2015年02月06日 > 全部分享
bzoj 1269 Splay处理文本信息
题目:http://www.lydsy.com/JudgeOnline/problem.php?id=1269大致思路:用splay维护整个文本信息,splay树的中序遍历即为该文本。收获:1、可以先在文本开始和结尾个插入一个节点,然后每次操作都适当调整位置,这样可以减少特判(插入一段文本到0位置,...
分类:其他好文   时间:2015-02-06 18:19:11    阅读次数:93
'msbuild' is not recognized as an internal or external command, operable program or batch file.
Came across this question on google, not sure if anyone still needs an answer here, but i got it working.To enable msbuild in Command Prompt, you simp...
分类:其他好文   时间:2015-02-06 18:18:35    阅读次数:324
android-intent 启动其他应用
启动其他应用
分类:移动开发   时间:2015-02-06 18:18:26    阅读次数:169
C++ 枚举转字符串
用#宏,见代码#include #define enum_to_string(x) #xenum sex{ boy, girl,};int main(){ std::cout << enum_to_string(sex::boy) << std::endl; system("...
分类:编程语言   时间:2015-02-06 18:21:19    阅读次数:194
csv、excel导入oracle
hcsv导入oracle#coding:gbkimport csv import cx_Oraclefields = []data = []table_name = 'ygl_test3'file_name = '清单.csv'with open(file_name, 'rb') as f: rea...
分类:数据库   时间:2015-02-06 18:19:07    阅读次数:272
Take Care Of Teeth With Those Tips
When we see people with sparkling teeth and beautiful smiles, we should admire it because it is really great to see people gifted with such beautiful ...
分类:其他好文   时间:2015-02-06 18:19:35    阅读次数:109
一个菜鸟眼中的前端
首先,笔者本身不是大牛级别的程序员,一个入行没多久的菜鸟而已,因此观点难免有所偏差,欢迎指正,不喜勿喷。算是自己工作三年以来的经验之谈吧。 什么是前端?前端的过去,现状,未来 简单的说前端就是在B/S模式中,处在browser部分的代码,使用的技术主要为javascript ,css,html,.....
分类:其他好文   时间:2015-02-06 18:20:41    阅读次数:134
EXCEL文件导入oracle
#coding:gbkimport xlrdimport cx_Oraclefields = []data = []table_name = 'ygl_test1'wb = xlrd.open_workbook("清单.xlsx")sheet1 = wb.sheet_by_index(0)#取第一行...
分类:数据库   时间:2015-02-06 18:18:24    阅读次数:151
javascript 学习随笔2
使用map, area , coords实现对图片上不同区域添加事件 5秒后执行弹出框显示5秒点击上面的按钮。括号最后的数字代表逝去的时间。使用setTimeout实现倒计时效果
分类:编程语言   时间:2015-02-06 18:18:46    阅读次数:158
JS篇 学习笔记
API:Array.prototype.splice(start, deleteCount, value) 数组操作中有:push、pop、unshift左移出、shift左进入;splice不仅可以完成删除操作,而且还可以从中间加入:当deleteCount参数为0时就可以添加元素进来;
分类:Web程序   时间:2015-02-06 18:18:17    阅读次数:146
EXCEL 写入
#!/usr/bin/env pythonfrom Tkinter import Tkfrom time import sleepfrom tkMessageBox import showwarningimport win32com.client as win32warn = lambda app:...
分类:其他好文   时间:2015-02-06 18:18:18    阅读次数:164
使用JavaScript的数组实现数据结构中的队列与堆栈
今天在项目中要使用JavaScript实现数据结构中的队列和堆栈,这里做一下总结。一、队列和堆栈的简单介绍1.1、队列的基本概念 队列:是一种支持先进先出(FIFO)的集合,即先被插入的数据,先被取出! 如下图所示: 1.2、堆栈的基本概念 堆栈:是一种支持后进先出(LIFO)的集合,即...
分类:编程语言   时间:2015-02-06 18:16:36    阅读次数:177
ajax实例及实现文本框异步搜素
search.jsp(WebContent/jsp/search.jsp)Search aaaaa bbbbb ccccc ddddd --> SearchServlet(com.test.srevle...
分类:Web程序   时间:2015-02-06 18:16:59    阅读次数:145
基于双TMS320C6678+双XC6VSX315T的6U VPX高速数据处理平台
基于双TMS320C6678+双XC6VSX315T的6U VPX高速数据处理平台一、板卡概述 板卡由我公司自主研发,基于VPX架构,主体芯片为两片 TI DSP TMS320C6678,两片Virtex-6 XC6VSX315T-ff1156 FPGA,1个RapidIO Switch。FPGA....
分类:其他好文   时间:2015-02-06 18:17:01    阅读次数:227
Transform Demo(按钮操作Demo优化)
//// ViewController.m// Transform演练//#import "ViewController.h"typedef enum{ kMovingDirTop = 10, kMovingDirBottom, kMovingDirLeft, kMovingDirRight...
分类:其他好文   时间:2015-02-06 18:17:58    阅读次数:118
oracle数据存入EXCEL
#coding:gb18030import cx_Oracleimport xlsxwriterimport timeimport sys reload(sys) sys.setdefaultencoding("gb18030")con = cx_Oracle.connect("user/user1...
分类:数据库   时间:2015-02-06 18:16:53    阅读次数:145
JConsole基于Linux WebSphere测试性能基本配置(远程访问)
1.JConsole 就不多做介绍了2.Linux端的配置 2.1、进入WebSphere控制台(https://localhost:9043/ibm/console/login.do?action=secure) 2.2、配置JVM参数 2.2.1、JVM:-Djavax.managem...
分类:Web程序   时间:2015-02-06 18:17:11    阅读次数:191
1846条   上一页 1 ... 31 32 33 34 35 36 37 ... 109 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!