Category: code
Question : Given a sorted list represented by a directional link structure (as follows), remove the duplicates and return the new list. /** * Definition for singly-linked list. * …
Question: Given an unsorted list of integers, find out the first missing positive. Problem Description: http://oj.leetcode.com/problems/first-missing-positive/ Examples: should return 3; should return 2. Can you do it with O(n) …
Question: Given a number (integer) stored in an array of digits int digits Plus one and return the new array. Source: http://oj.leetcode.com/problems/plus-one/ The number is written from left to right, so for …
October 18, 2013
16 bit, assembly language, code, DOS, DOSBOX, I/O File, implementation, interpreter / compiler, memory, MSDOS 16-bit, programming languages, python, tools / utilities, tricks, windows
Binary files are not complex. The DOS .COM format is simple. The following demonstrates the idea of converting a short message (ASCII text) to .COM executable. As we know, …
October 17, 2013
16 bit, assembly language, code, DOS, DOSBOX, implementation, MSDOS 16-bit, programming languages, string, windows
16-bit DOS has been obsolete. But learning 16-bit Assembly helps up understand how underlying system works and it is fun programming using assembly. 16-bit Assembly is similar to 32-bit …