E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
ASSUME
更灵活的定位内存地址的方法05 - 零基础入门学习汇编语言36
nbsp; 让编程改变世界 Change the world by program 问题7.8 [codesyntax lang="asm"]
assume
·
2015-11-12 11:08
汇编语言
包含多个段的程序02 - 零基础入门学习汇编语言30
assume
cs:codesg codesg segment dw 0123h,0456h,0789h,0abch,0defh,0fedh,0cbah,0987h ?
·
2015-11-12 11:00
汇编语言
包含多个段的程序02 - 零基础入门学习汇编语言30
assume
cs:codesg codesg segment dw 0123h,0456h,0789h,0abch,0defh,0fedh,0cbah,0987h ?
·
2015-11-12 11:59
汇编语言
[LeetCode][Python]Longest Palindromic Substring
You may
assume
·
2015-11-12 11:36
substring
【LeetCode练习题】Merge Sorted Array
Note:You may
assume
that A has enough space (size that is greater or equal to m +&nb
·
2015-11-12 11:04
LeetCode
【LeetCode练习题】Validate Binary Search Tree
Assume
a BST is defined as follows: The left subtree of a node contains only nodes
·
2015-11-12 11:57
Binary search
sdut 2154:Shopping(第一届山东省省赛原题,水题)
You can
assume
the street as a straight line, while the shops are some points on the line.
·
2015-11-12 10:38
ping
Search Insert Position
You may
assume
no duplicates in the array.
·
2015-11-12 10:36
position
Validate Binary Search Tree
Assume
a BST is defined as follows: The left subtree of a node contains only nodes with keys 
·
2015-11-12 10:14
Binary search
Find Minimum in Rotated Sorted Array
You may
assume
no duplicate exi
·
2015-11-12 10:13
array
tmux与vim主题不一致
中添加set -g default-terminal "screen-256color" 然后再次启动tmux的时候用tmux -2就可以了 -2 Force tmux to
assume
·
2015-11-12 10:12
vim
axis1.4 集成web应用
、Installation Instructions 安装指导 (不常用) a) Step 1: Preparing the webapp Here we
assume
·
2015-11-12 10:43
Web应用
Longest Palindromic Substring -LeetCode
题目 Given a string s,find the longest palindromic substring in S.You may
assume
that
·
2015-11-12 09:30
substring
Longest Palindromic Substring
You may
assume
that the maximum length of S is 1000, and there exists one unique longest palindromic
·
2015-11-12 09:47
substring
安装一个新的int 9中断例程【在DOS下,按Tab建后改变当前屏幕的显示颜色,其它键照常处理】
;任务:; 安装一个新的int 9中断例程;功能:; 在DOS下,按Tab建后改变当前屏幕的显示颜色,其它键照常处理 1
assume
cs:code 2 3 stack segment
·
2015-11-12 09:27
dos
访问CMOS RAM 【 以"年/月/日 时:分:秒" 的格式,显示当前的日期、时间】
;访问CMOS RAM;;编程:; 以"年/月/日 时:分:秒" 的格式,显示当前的日期、时间; 1
assume
cs:code 2 3
·
2015-11-12 09:27
OS
用中断例程完成loop指令的功能【安装中断例程,设置中断向量表】
1.asm ;安装中断例程
assume
cs:code code segment start: mov ax, cs mov ds, ax mov si, offset
·
2015-11-12 09:25
loop
编写一个子程序,将包含任意字符,以0结尾的字符串中的小写字母转变成大写字母
结尾的字符串中的小写字母转变成大写字母;功能:将以0结尾的字符串中的小写字母转变成大写字母;参数:ds:si只想字符串首地址;注意:需要进行转化的是字符串中的小写字母'a'~'z',而不是其他字符
assume
·
2015-11-12 09:24
字符串
接收用户的键盘输入, 输入'r',将屏幕上的字符设置为红色 ; 输入'g',将屏幕上的字符设置为绿色 ; 输入'b',将屏幕上的字符设置为蓝色
;编程;接收用户的键盘输入, 输入'r',将屏幕上的字符设置为红色; 输入'g',将屏幕上的字符设置为绿色; 输入'b',将屏幕上的字符设置为蓝色
assume
cs:code code segmentstart
·
2015-11-12 09:20
用户
int 9中断例程-;在屏幕中间依次显示'a'~'z',并可以让人看清。 在显示的过程中,按下Esc键后,改变显示的颜色
;在显示的过程中,按下Esc键后,改变显示的颜色
assume
cs:code stack segment db 128 dup(0)stack ends data segment dw 0, 0data
·
2015-11-12 09:19
int
CMOS RAM中存储的时间信息
assume
cs:code code segmentstart: mov al, 8 out 70h, al in al, 71h mov ah,al mov
·
2015-11-12 09:18
OS
编写0号中断处理程序,使得在出发溢出发生时,在屏幕中间显示字符串,然后返回到DOS
assume
cs:codecode segmentstart: mov ax, cs 
·
2015-11-12 09:17
dos
实验十 显示字符串
;---------------------------------------------------------
assume
cs:code d
·
2015-11-12 09:13
字符串
在屏幕中间分别显示绿色、绿低红色、白底蓝色的字符串'welcome to masm!'
;;---------------------------------------------------
assume
cs:code,ds:data,ss:stack da
·
2015-11-12 09:11
com
HipHop PHP实战(详解web运行模式)
/wiki/Running-HipHop Running HipHop Page History Note: These code examples
assume
·
2015-11-11 19:02
hiphop
*3Sum Closest
You may
assume
·
2015-11-11 19:25
close
Merge Sorted Array
Note:You may
assume
that nums1 has enough space (size th
·
2015-11-11 19:21
array
【POJ2887】【块状链表】Big String
You can
assume
that it is non-empty and its length
·
2015-11-11 19:59
String
[POJ 1328] Radar Installation
Limit: 10000K Total Submissions: 59563 Accepted: 13430 Description
Assume
·
2015-11-11 19:45
Install
多项式ADT
/*删除表的正确方法*/ /*
assume
header*/ void DeleteList(List L) { Position p,Tmp; p=L->Next;
·
2015-11-11 19:40
adt
Insert Interval
You may
assume
that the intervals were initially sorted according to their start tim
·
2015-11-11 18:30
insert
Sudoku Solver
You may
assume
that there will be only one unique solution. A sudoku puzz
·
2015-11-11 18:16
sudo
Search Insert Position
You may
assume
no duplicates in the array.
·
2015-11-11 18:15
position
3Sum Closest
You may
assume
that
·
2015-11-11 18:02
close
Longest Palindromic Substring
You may
assume
that the maximum length of S is 1000, and there exists one unique longest palindromic
·
2015-11-11 18:54
substring
a fast algorithm to compute the area of a polygon
Assume
there is a polygon (v1, v2,...vn), where vi, (1<=i<=n) are its vertices.
·
2015-11-11 18:39
Algorithm
Radar Installation 贪心
Memory Limit: 10000K Total Submissions: 42461 Accepted: 9409 Description
Assume
·
2015-11-11 17:36
Install
RMAN Recovery Window retention policy tips
Assume
the following retention policy illustrated in Figure rw01.
·
2015-11-11 17:52
window
3Sum Closest
You may
assume
that
·
2015-11-11 16:07
close
Insert Interval
You may
assume
that the intervals were initially sorted according to their start tim
·
2015-11-11 16:03
insert
Construct Binary Tree from Preorder and Inorder Traversal
Note:You may
assume
that duplicates do not exist in the tree.
·
2015-11-11 16:00
binary
Construct Binary Tree from Inorder and Postorder Traversal
Note:You may
assume
that duplicates do not exist in the tree.
·
2015-11-11 16:00
binary
Mat 和 CvMat,IplImage相互转化
The code snippets below all
assume
the correct namespace is used: using namespac
·
2015-11-11 16:13
image
[Leetcode] Find the minimum in rotated sorted array
You may
assume
no duplicat
·
2015-11-11 16:09
LeetCode
[Leetcode] Merge Sorted Array (C++)
Note:You may
assume
that A has enough space (size that is greater or equal to m + n) to
·
2015-11-11 16:08
LeetCode
[Leetcode] Search Insert Position
You may
assume
no duplicates in the arr
·
2015-11-11 16:05
LeetCode
[Leetcode] 3Sum Closest
You may
assume
·
2015-11-11 16:04
LeetCode
01_汇编语言(基本格式_模板)
4 DATA ENDS 5 6 CODE SEGMENT ;代码段开始 7
ASSUME
CS:CODE,DS:DATA 8 START: MOV AX,DATA
·
2015-11-11 16:30
汇编语言
Construct Binary Tree from Preorder and Inorder Traversal
Note:You may
assume
that duplicates do not exist in the tree.
·
2015-11-11 15:15
binary
Construct Binary Tree from Inorder and Postorder Traversal
Note:You may
assume
that duplicates do not exist in the tree. 和pre & in 是一样的。
·
2015-11-11 15:15
binary
上一页
15
16
17
18
19
20
21
22
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他