码迷,mamicode.com
首页 > 2014年07月13日 > 全部分享
Binary Tree Postorder Traversal
Given a binary tree, return the postorder traversal of its nodes' values. For example: Given binary tree {1,#,2,3}, 1 2 / 3 return [3,2,1]. Note: Recursive solut...
分类:其他好文   时间:2014-07-13 17:18:19    阅读次数:193
淘宝商城model部分
淘宝商城 model /** * 功能:这是一个数据库连接,一个model类 */ package com.xf.model; import java.sql.*; public class ConnDB { private Connection ct=null; public Connection getConn() { try { Class.forNa...
分类:其他好文   时间:2014-07-13 16:17:33    阅读次数:208
SQL Server 阻止了对组件 'Ad Hoc Distributed Queries' 的 STATEMENT'OpenRowset/OpenDatasource' 的访问
原因:在从远程服务器复制数据到本地时出现 “SQL Server 阻止了对组件 'Ad Hoc Distributed Queries' 的 STATEMENT'OpenRowset/OpenDatasource' 的访问,因为此组件已作为此服务器安全配置的一部分而被关闭。系统管理员可以通过使用 sp_configure 启用 'Ad Hoc Distributed Queries'。有关启...
分类:数据库   时间:2014-07-13 15:43:44    阅读次数:227
淘宝商城servlet部分
淘宝商城servlet部分 package com.xf.servlet; import java.io.IOException; import java.io.PrintWriter; import java.util.*; import com.xf.model.*; import javax.servlet.ServletException; import javax.servl...
分类:其他好文   时间:2014-07-13 20:43:04    阅读次数:230
快速排序算法详解与实现
快速排序是一种分治排序算法。广泛认为它是解决一般问题的最佳排序算法。同插入排序一样,快速排序也属于比较排序的一种,而且不需要额外的存储空间。在处理中到大型数据集时,快速排序是一个比较好的选择。 由于快速排序是一种分治算法,因此可以用分治法的思想将排序分为三个步骤 1.分:设定一个分割值将数据分为两部分。 2.治:分别在两部分用递归的方式继续使用快速排序法。 3.合:对分割部分排序排序直至完...
分类:其他好文   时间:2014-07-13 15:35:44    阅读次数:214
Trie树
字典树查询 #include #include #include using namespace std; const int maxn = 30; typedef struct Trie{ int v; Trie *next[ maxn ]; }Trie; Trie root; void CreateTrie( char *str ){ int len = strlen( st...
分类:其他好文   时间:2014-07-13 17:17:39    阅读次数:336
core graphics path
ios quartz 2D path小结...
分类:其他好文   时间:2014-07-13 16:51:42    阅读次数:189
SQLServer如何导入excel
--从Excel文件中,导入数据到SQL数据库中,很简单,直接用下面的语句: /*===================================================================*/ --如果接受数据导入的表已经存在 insert into 表 select * from OPENROWSET('MICROSOFT.JET.OLEDB.4.0' ,'Exce...
分类:数据库   时间:2014-07-13 20:42:30    阅读次数:319
淘宝商城jsp部分
淘宝商城jsp部分   ...
分类:Web程序   时间:2014-07-13 13:57:25    阅读次数:337
start com.android.settings/com.android.settings.SubSettings activity
1. get class name: adb shell shell@android:/mnt/sdcard/books $ dumpsys window windows >dump.txt grep "focus"   mFocusedApp=AppWindowToken{420a5df8 token=Token{420a5c00 ActivityRecord{420a5ac8 com....
分类:移动开发   时间:2014-07-13 16:04:51    阅读次数:273
NSIS皮肤插件:vcl-styles-plugins
vcl-styles-plugins简介...
分类:其他好文   时间:2014-07-13 15:35:04    阅读次数:345
Ngnix中的fastcgi参数性能优化和解释
优化性能参数设置,在ngnix.conf中的http 层加上fastcgi参数如下: http { fastcgi_cache_path  /usr/local/nginx/fastcgi_cache levels=1:2 keys_zone=TEST:10m inactive=5m; fastcgi_connect_timeout=300; fastcgi_send_timeout=30...
分类:其他好文   时间:2014-07-13 17:17:07    阅读次数:218
POJ 3259 Wormholes Bellman题解
本题就是需要检查有没有负环存在于路径中,使用Bellman Ford算法可以检查是否有负环存在。 算法很简单,就是在Bellman Ford后面增加一个循环判断就可以了。 题目故事很奇怪,小心读题。 #include #include #include const int MAX_N = 501; const int MAX_M = 2501; const int MAX_W...
分类:其他好文   时间:2014-07-13 15:48:23    阅读次数:212
Linked List Cycle
Given a linked list, determine if it has a cycle in it. Follow up: Can you solve it without using extra space? /** * Definition for singly-linked list. * class ListNode { * int val; * ...
分类:其他好文   时间:2014-07-13 16:32:04    阅读次数:152
qsettings
f:\linux\android\leon\workspace\qsettings\res\xml\settings_headers.xml <Preference android:key="profiles_settings" android:title="@string/profiles_settings_title" andro...
分类:其他好文   时间:2014-07-13 17:16:29    阅读次数:260
android ndk下文件遍历与删除
在做手机开发过程中,难免要进行一些本地文件管理操作,比如很多常见app如微博、微信等都有清除缓存功能,该功能就是遍历app自己的缓存目录,然后删除全部缓存文件。使用java的File类可以实现本地文件遍历及删除等等功能,如果使用ndk的方式该如何实现呢?以前写过《基于c++使用win32 api遍历文件夹》,由于android ndk平台属于linux系统,所以该方式是无法使用的。...
分类:移动开发   时间:2014-07-13 13:56:41    阅读次数:380
uva673
Parentheses Balance  You are given a string consisting of parentheses () and []. A string of this type is said to be correct: (a)if it is the empty string(b)if A and B are correct, AB is c...
分类:其他好文   时间:2014-07-13 15:42:59    阅读次数:207
1468条   上一页 1 ... 37 38 39 40 41 42 43 ... 87 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!