自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 资源 (2)
  • 收藏
  • 关注

原创 二叉树的一些操作的C++实现。

#include #include #include #include #include #include #include "test.h"using namespace std;void rotate2(string &s,int k){ k = (k+s.length())%s.length(); int cur=0; int count = 0; while(co

2013-08-16 12:18:29 461

原创 图的邻接表和邻接矩阵的java实现(含深度优先搜索和广度优先搜索、强连通分量)

简单起见,顶点卫星数据类型为char,弧没有额外信息。邻接矩阵:import java.util.*;public class GraphMatrix { public static final int DEFAULTSIZE = 20;//默认规模 private int size;//规模 private Vertex[] vertexArray;//顶点数组 private

2013-07-24 23:08:01 1512

原创 JAVA递归和非递归输出字符串的全排列

要输出字符s从[start,end]间的全排列,只要将s[start,end]依次与s[start]替换并输出s从[start+1,end]的全排列即可。//递归输出全排列 public static void fullPermutation(String s) { permutation(s.toCharArray(),0,s.length()-1); } private sta

2013-07-20 23:57:06 1202

原创 红黑树的JAVA实现

package dataStructure;public class RBTree { public RBTree() { root = null; } public void insert(int key,String value) { RBTreeNode newNode = new RBTreeNode(key,value); if(root == null)

2013-07-18 23:27:05 521

原创 简单二叉搜索树的JAVA实现。

package dataStructure;import java.util.*;public class BinaryTree { public BinaryTree() { root = null; } public boolean search(int data) { TreeNode node = root; while(node != null) {

2013-07-08 23:30:38 406

原创 输出所有的最长单调递增子序列。

package dp;import java.lang.*;import java.util.*;/** * ** * @author lcq * * 最长单调递增子序列 * 对于字符串s,用数组l记录长度,l[i]表示以s.charAt(i)结尾的最长单调递增子序列的长度。初始化为1. * l[i] = max(l[i],l[j]+1),其中j满足0<=j<i且s.charAt(j) < s.c

2013-07-07 21:11:22 967

oracle-pl-sql-programming-5th-edition

Product Description This book is the definitive reference on PL/SQL, considered throughout the database community to be the best Oracle programming book available. Like its predecessors, this fifth edition of Oracle PL/SQL Programming covers language fundamentals, advanced coding techniques, and best practices for using Oracle’s powerful procedural language. Thoroughly updated for Oracle Database 11g Release 2, this edition reveals new PL/SQL features and provides extensive code samples, ranging from simple examples to complex and complete applications, in the book and on the companion website. This indispensable reference for both novices and experienced Oracle programmers will help you: Get PL/SQL programs up and running quickly, with clear instructions for executing, tracing, testing, debugging, and managing PL/SQL code Optimize PL/SQL performance with the aid of a brand-new chapter in the fifth edition Explore datatypes, conditional and sequential control statements, loops, exception handling, security features, globalization and localization issues, and the PL/SQL architecture Understand and use new Oracle Database 11g features, including the edition-based redefinition capability, the function result cache, the new CONTINUE statement, fine-grained dependency tracking, sequences in PL/SQL expressions, supertype invocation from subtypes, and enhancements to native compilation, triggers, and dynamic SQL Use new Oracle Database 11g tools and techniques such as PL/Scope, the PL/SQL hierarchical profiler, and the SecureFiles technology for large objects Build modular PL/SQL applications using procedures, functions, triggers, and packages

2012-02-22

比较实用的C语言教程

C语言是程序入门者的首选语言,本文给出了比较详细实用的C语言教程。

2011-07-28

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除