原创 24. Swap Nodes in Pairs (java實現)

Given a linked list, swap every two adjacent nodes and return its head. For example, Given 1->2->3->4, you should retu

原创 DBN深度信念網絡算法

0. 引言 講了講歷史,RBM對DBN的模擬,從而帶來了deep learning的革命。 1 受限波爾茲曼機RBM的基本模型 介紹0-1狀態的BM和RBM,同一類單元的條件獨立性,激活概率等。 2. 基於對比散度的RBM快速學習算法

原创 Spring學習總結一(續1)

9 繼承bean配置     本文上接Spring學習總結一,在平時的開發中會有子類父類,同樣在bean的配置中也可以從在父bean和子bean,爲了進行繼承bean的學習,我們重新建一個包:com.alibaba.beans.relat

原创 Spring學習總結一(續2)

16 通過靜態工廠方法配置bean     這裏我們新建一個包com.alibaba.beans.factory,然後把前面總結一里面的Car類複製過來修改了一下(下面給出代碼),然後新建一個staticfactory的類去構造靜態工廠方

原创 Remove Nth Node From End of List(java實現)

Given a linked list, remove the nth node from the end of list and return its head.For example,Given linked list: 1->2

原创 26. Remove Duplicates from Sorted Array(java)

Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length

原创 Letter Combinations of a Phone Number

Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit to let

原创 Valid Parentheses(java實現)

Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.

原创 21. Merge Two Sorted Lists

Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes o

原创 23. Merge k Sorted Lists(java實現)

Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity. 本題主要就是要讓我們把k個已經排好序

原创 25. Reverse Nodes in k-Group(java)

Given a linked list, reverse the nodes of a linked list k at a time and return its modified list. If the number of

原创 4Sum

Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all uniqu

原创 java實現括號匹配

package com.alibaba.learning; import java.util.Scanner; import java.util.Stack; public class StringMatching { public

原创 java實現批量導入.csv文件到mysql數據庫

這篇文章主要爲大家詳細介紹了java實現批量導入.csv文件到mysql數據庫,具有一定的參考價值,感興趣的小夥伴們可以參考一下 這篇博文是在參加CCF時導入.csv文件時自己總結的,雖然NavicatForMys

原创 Java實現批量修改txt文件名稱的方法示例

這篇文章主要介紹了Java實現批量修改txt文件名稱的方法,結合實例形式分析了Java針對目錄文件遍歷及文件讀寫、屬性操作等相關實現技巧,需要的朋友可以參考下 本文實例講述了Java實現批量修改txt文件名稱的方法